omnichatkit 0.0.22-b

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4385 @@
1
+ import * as React$2 from "react";
2
+ import React$1, { ReactNode } from "react";
3
+ import { Message as Message$1 } from "ai";
4
+ import { useChat } from "@ai-sdk/react";
5
+ import "overlayscrollbars/overlayscrollbars.css";
6
+ import { z } from "zod";
7
+ import { Button as Button$1 } from "@base-ui/react/button";
8
+ import { VariantProps } from "class-variance-authority";
9
+ import { ScrollArea as ScrollArea$1 } from "@base-ui/react/scroll-area";
10
+ import { Dialog } from "@base-ui/react/dialog";
11
+ //#region src/types/index.d.ts
12
+ /**
13
+ * Available built-in themes for the chat interface.
14
+ */
15
+ type ChatTheme = 'standard' | 'dark' | 'light';
16
+ /**
17
+ * Determines how chat sessions are persisted across reloads.
18
+ * - 'disabled': Sessions are not tracked at all.
19
+ * - 'memory': Sessions are saved to the browser's `sessionStorage`.
20
+ * - 'api': Sessions are loaded from and saved to a remote server.
21
+ */
22
+ type StorageMode = 'disabled' | 'memory' | 'api';
23
+ /**
24
+ * Determines the layout behavior for the Agentic UI (A2UI) canvas.
25
+ * - 'inline': Rendered within the message list.
26
+ * - 'split': Rendered in a separate detached canvas next to the chat.
27
+ */
28
+ type A2UILayout = 'inline' | 'split';
29
+ /**
30
+ * Position of the chat component relative to its container.
31
+ */
32
+ type ComponentPosition = 'left' | 'right' | 'top' | 'bottom';
33
+ /**
34
+ * Visual display mode for the chat manager.
35
+ * - 'embedded': Rendered inline with the normal document flow.
36
+ * - 'floating': Rendered as a floating widget on top of the page.
37
+ */
38
+ type DisplayMode = 'embedded' | 'floating';
39
+ /**
40
+ * A mapping of component names to React functional components.
41
+ * Used for rendering dynamic UI from the Agentic UI (A2UI) system.
42
+ */
43
+ interface A2UICatalog {
44
+ [componentName: string]: React.FC<any>;
45
+ }
46
+ interface LabelStyles {
47
+ titleStyle?: React.CSSProperties | string;
48
+ subtitleStyle?: React.CSSProperties | string;
49
+ disclaimerStyle?: React.CSSProperties | string;
50
+ backgroundStyle?: React.CSSProperties | string;
51
+ }
52
+ interface HeaderStyles {
53
+ titleStyle?: React.CSSProperties | string;
54
+ subtitleStyle?: React.CSSProperties | string;
55
+ collapseButtonStyle?: React.CSSProperties | string;
56
+ backgroundStyle?: React.CSSProperties | string;
57
+ }
58
+ interface ChatLabels {
59
+ title: string;
60
+ subtitle?: string | ReactNode;
61
+ placeholder: string;
62
+ sendButton: string;
63
+ stopButton?: string;
64
+ reloadButton?: string;
65
+ disclaimer: string | ReactNode;
66
+ labelStyles?: LabelStyles;
67
+ userLabel?: string | ReactNode;
68
+ assistantLabel?: string | ReactNode;
69
+ }
70
+ interface WelcomeScreenProps {}
71
+ type SlotValue<T> = T | ReactNode;
72
+ /**
73
+ * Internal representation of a chat message. Extends the Vercel AI SDK Message.
74
+ */
75
+ interface Message extends Omit<Message$1, 'role' | 'content'> {
76
+ /** The author of the message. Typically 'user' or 'assistant', but supports custom roles. */
77
+ role: 'user' | 'assistant' | 'system' | 'tool' | 'developer' | 'activity' | 'reasoning' | string;
78
+ /** The message text or array of rich input content (like images/documents). */
79
+ content?: string | InputContent[];
80
+ /** Optional display name of the message sender. */
81
+ name?: string;
82
+ /** Encrypted or masked content for sensitive information. */
83
+ encryptedContent?: string;
84
+ /** Arbitrary metadata attached to the message. */
85
+ metadata?: Record<string, any>;
86
+ /** Defines the Agentic UI component to render for this message. */
87
+ componentPayload?: {
88
+ /** The name of the component, matching an entry in the A2UICatalog. */
89
+ name: string;
90
+ /** The props to pass to the component. */
91
+ props: Record<string, any>;
92
+ };
93
+ /** Indicates if a human-in-the-loop review is required before continuing. */
94
+ hitlRequired?: boolean;
95
+ }
96
+ interface AIChatServerOptions {
97
+ apiKey: string;
98
+ endpoint?: string;
99
+ headers?: Record<string, string>;
100
+ }
101
+ type InputContent = TextInputContent | ImageInputContent | AudioInputContent | VideoInputContent | DocumentInputContent;
102
+ interface InputContentDataSource {
103
+ type: "data";
104
+ value: string;
105
+ mimeType: string;
106
+ }
107
+ interface InputContentUrlSource {
108
+ type: "url";
109
+ value: string;
110
+ mimeType?: string;
111
+ }
112
+ type InputContentSource = InputContentDataSource | InputContentUrlSource;
113
+ interface TextInputContent {
114
+ type: "text";
115
+ text: string;
116
+ }
117
+ interface ImageInputContent {
118
+ type: "image";
119
+ source: InputContentSource;
120
+ metadata?: Record<string, unknown>;
121
+ }
122
+ interface AudioInputContent {
123
+ type: "audio";
124
+ source: InputContentSource;
125
+ metadata?: Record<string, unknown>;
126
+ }
127
+ interface VideoInputContent {
128
+ type: "video";
129
+ source: InputContentSource;
130
+ metadata?: Record<string, unknown>;
131
+ }
132
+ interface DocumentInputContent {
133
+ type: "document";
134
+ source: InputContentSource;
135
+ metadata?: Record<string, unknown>;
136
+ }
137
+ /**
138
+ * Describes how to serialize the outbound chat payload before it is sent to
139
+ * the backend. Each field is an optional key that overrides the default field
140
+ * name used by the Vercel AI SDK `useChat` body.
141
+ *
142
+ * Example — if your API expects `{ query, history }` instead of `{ messages }`:
143
+ * ```ts
144
+ * apiRequestSchema: {
145
+ * messagesKey: 'history',
146
+ * userMessageKey: 'query',
147
+ * transform: (payload) => ({ query: payload.messages.at(-1)?.content, history: payload.messages }),
148
+ * }
149
+ * ```
150
+ */
151
+ interface ApiRequestSchema {
152
+ /** The top-level key used for the messages array (default: `'messages'`). */
153
+ messagesKey?: string;
154
+ /** The key used for a single user message string (default: `'content'`). */
155
+ userMessageKey?: string;
156
+ /** Additional static fields merged into every request body. */
157
+ extraBody?: Record<string, unknown>;
158
+ /**
159
+ * Full custom serializer. When provided, receives the default payload and
160
+ * must return the final body object that will be JSON-stringified and sent.
161
+ */
162
+ transform?: (payload: Record<string, unknown>) => Record<string, unknown>;
163
+ }
164
+ /**
165
+ * Describes how to deserialize the backend response back into the internal
166
+ * `Message` shape consumed by OmniChatKit.
167
+ *
168
+ * Example — if your API returns `{ reply: string, metadata: object }`:
169
+ * ```ts
170
+ * apiResponseSchema: {
171
+ * contentPath: 'reply',
172
+ * transform: (raw) => ({ role: 'assistant', content: raw.reply }),
173
+ * }
174
+ * ```
175
+ */
176
+ interface ApiResponseSchema {
177
+ /**
178
+ * Dot-separated path to the assistant message text within the JSON response
179
+ * (default: `'content'`).
180
+ * E.g. `'data.message.text'` resolves `response.data.message.text`.
181
+ */
182
+ contentPath?: string;
183
+ /**
184
+ * Full custom deserializer. When provided, receives the raw parsed JSON and
185
+ * must return a partial `Message`-compatible object.
186
+ */
187
+ transform?: (raw: Record<string, unknown>) => Partial<{
188
+ role: string;
189
+ content: string;
190
+ [key: string]: unknown;
191
+ }>;
192
+ }
193
+ /** Combined schema that pairs a request serializer with a response deserializer. */
194
+ interface ApiSchema {
195
+ apiRequestSchema?: ApiRequestSchema;
196
+ apiResponseSchema?: ApiResponseSchema;
197
+ }
198
+ /**
199
+ * Props for configuring the AIChatProvider (classic mode).
200
+ */
201
+ interface AIChatProviderProps {
202
+ children: ReactNode;
203
+ /** Visual theme for the chat. */
204
+ theme?: ChatTheme;
205
+ /** The endpoint route for the Vercel AI SDK `useChat`. */
206
+ apiEndpoint?: string;
207
+ /** Optional identifier for the current agent context. */
208
+ agentId?: string;
209
+ /** Unique ID for the current chat session. */
210
+ sessionId?: string;
211
+ /** How session state should be managed. */
212
+ sessionStorageMode?: StorageMode;
213
+ /** The endpoint to use when session storage is set to 'api'. */
214
+ sessionRoute?: string;
215
+ /** Schema that maps OmniChatKit's internal message format to the backend API. Only used in `classic` mode. */
216
+ chatApiSchema?: ApiSchema;
217
+ }
218
+ type ToggleButtonPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
219
+ interface MessageContentStyles {
220
+ containerStyle?: React.CSSProperties | string;
221
+ bubbleStyle?: React.CSSProperties | string;
222
+ alignment?: 'left' | 'right' | 'center';
223
+ badgeStyle?: BadgeStyles | string;
224
+ attachmentPreviewStyles?: {
225
+ containerStyle?: React.CSSProperties | string;
226
+ itemStyle?: React.CSSProperties | string;
227
+ };
228
+ }
229
+ interface AssistantMessageContentStyles extends MessageContentStyles {
230
+ subAgentBadgeStyle?: BadgeStyles | string;
231
+ }
232
+ interface ThinkingStepStyles {
233
+ containerStyle?: React.CSSProperties | string;
234
+ iconStyles?: {
235
+ icon?: ReactNode;
236
+ iconStyle?: React.CSSProperties | string;
237
+ };
238
+ titleStyle?: React.CSSProperties | string;
239
+ dataStyle?: React.CSSProperties | string;
240
+ }
241
+ interface ToolCallStepStyles {
242
+ containerStyle?: React.CSSProperties | string;
243
+ headerStyles?: {
244
+ iconStyles?: {
245
+ icon?: ReactNode;
246
+ iconStyle?: React.CSSProperties | string;
247
+ };
248
+ titleStyles?: {
249
+ titleStyle?: React.CSSProperties | string;
250
+ toolNameStyle?: React.CSSProperties | string;
251
+ };
252
+ };
253
+ requestDataStyles?: {
254
+ icon?: ReactNode;
255
+ iconStyle?: React.CSSProperties | string;
256
+ titleStyle?: React.CSSProperties | string;
257
+ dataStyle?: React.CSSProperties | string;
258
+ };
259
+ responseDataStyles?: {
260
+ icon?: ReactNode;
261
+ iconStyle?: React.CSSProperties | string;
262
+ titleStyle?: React.CSSProperties | string;
263
+ dataStyle?: React.CSSProperties | string;
264
+ };
265
+ }
266
+ interface MessageStyles {
267
+ assistantMessageStyles?: React.CSSProperties | string | AssistantMessageContentStyles;
268
+ userMessageStyles?: React.CSSProperties | string | MessageContentStyles;
269
+ developerMessageStyles?: React.CSSProperties | string | MessageContentStyles;
270
+ activityMessageStyles?: React.CSSProperties | string | MessageContentStyles;
271
+ thinkingStepStyles?: ThinkingStepStyles;
272
+ toolCallStepStyles?: ToolCallStepStyles;
273
+ stopResponseStyle?: React.CSSProperties | string;
274
+ backgroundStyle?: React.CSSProperties | string;
275
+ }
276
+ interface InputStyles {
277
+ inputStyle?: React.CSSProperties | string;
278
+ sendButtonStyles?: {
279
+ icon?: ReactNode;
280
+ iconStyles?: React.CSSProperties | string;
281
+ labelStyles?: React.CSSProperties | string;
282
+ containerStyle?: React.CSSProperties | string;
283
+ };
284
+ attachmentMenuStyles?: {
285
+ plusButtonIcon?: ReactNode;
286
+ plusButtonIconStyles?: React.CSSProperties | string;
287
+ plusButtonContainerStyles?: React.CSSProperties | string;
288
+ menuContainerStyles?: React.CSSProperties | string;
289
+ menuItemStyles?: React.CSSProperties | string;
290
+ menuItemIconStyles?: React.CSSProperties | string;
291
+ previewContainerStyles?: React.CSSProperties | string;
292
+ previewItemContainerStyles?: React.CSSProperties | string;
293
+ previewDialogContainerStyles?: React.CSSProperties | string;
294
+ previewDialogMediaStyles?: React.CSSProperties | string;
295
+ };
296
+ containerStyle?: React.CSSProperties | string;
297
+ backgroundStyle?: React.CSSProperties | string;
298
+ }
299
+ interface BadgeStyles {
300
+ containerStyle?: React.CSSProperties | string;
301
+ textStyle?: React.CSSProperties | string;
302
+ icon?: ReactNode;
303
+ }
304
+ interface PromptChip {
305
+ title: string | ReactNode;
306
+ hoverText?: string;
307
+ prompt: string;
308
+ }
309
+ interface PromptChips {
310
+ promptChipList: PromptChip[];
311
+ alwaysShow?: boolean;
312
+ }
313
+ interface PromptChipStyles {
314
+ promptChipContainerStyle?: React.CSSProperties | string;
315
+ promptChipTitleStyle?: React.CSSProperties | string;
316
+ promptChipHoverTextStyle?: React.CSSProperties | string;
317
+ }
318
+ interface SkeletonStyles {
319
+ containerStyle?: React.CSSProperties | string;
320
+ headerStyle?: React.CSSProperties | string;
321
+ messageStyle?: React.CSSProperties | string;
322
+ inputStyle?: React.CSSProperties | string;
323
+ }
324
+ interface ChatManagerComponentStyles {
325
+ skeletonStyles?: SkeletonStyles;
326
+ messageStyle?: MessageStyles;
327
+ inputSectionStyle?: InputStyles;
328
+ headerStyle?: HeaderStyles;
329
+ promptChipStyles?: PromptChipStyles;
330
+ scrollButtonStyles?: {
331
+ icon?: ReactNode;
332
+ iconStyles?: React.CSSProperties | string;
333
+ };
334
+ backgroundStyle?: React.CSSProperties | string;
335
+ }
336
+ /**
337
+ * Core configuration properties for the ChatManager component.
338
+ */
339
+ type ChatManagerBaseProps = {
340
+ /** Theme to apply to the ChatManager. */
341
+ theme?: ChatTheme;
342
+ /** Additional CSS class names. */
343
+ className?: string;
344
+ /** Inline styles for the root container. */
345
+ style?: React.CSSProperties;
346
+ /** Advanced custom styling for internal components. */
347
+ chatManagerComponentStyles?: ChatManagerComponentStyles;
348
+ /** Allowed types of attachments the user can upload. */
349
+ inputTypeList?: Array<'image' | 'audio' | 'video' | 'document'>;
350
+ /** Position of the component. */
351
+ position?: ComponentPosition;
352
+ /** Where to place the collapse toggle button. */
353
+ collapseToggleButtonPosition?: ToggleButtonPosition;
354
+ /** Customization options for the toggle button. */
355
+ toggleButtonProps?: {
356
+ toggleButtonStyle?: React.CSSProperties | string;
357
+ toggleButtonIconProps?: {
358
+ toggleButtonIcon?: React.ReactNode;
359
+ toggleButtonIconStyle?: React.CSSProperties | string;
360
+ };
361
+ toggleButtonLabelProps?: {
362
+ toggleButtonLabel?: string | React.ReactNode;
363
+ toggleButtonLabelStyle?: React.CSSProperties | string;
364
+ };
365
+ };
366
+ /** Whether the chat is open by default on mount. */
367
+ defaultOpen?: boolean;
368
+ /** If true, the chat automatically scrolls to the bottom on new messages. */
369
+ autoScroll?: boolean;
370
+ /** Props forwarded to the native input element. */
371
+ inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
372
+ /** Optional welcome screen rendered when the chat is empty. */
373
+ welcomeScreen?: SlotValue<React.FC<WelcomeScreenProps>> | boolean;
374
+ /** Localization and override labels for UI text. */
375
+ labels?: Partial<ChatLabels>;
376
+ /** Suggested prompts to display to the user. */
377
+ promptChips?: PromptChips;
378
+ /** The active agent's ID. */
379
+ agentId?: string;
380
+ /** The active session ID. */
381
+ sessionId?: string;
382
+ /** Position for the detached A2UI canvas (used when layout is 'split'). */
383
+ a2uiPosition?: ComponentPosition;
384
+ /** Whether the split A2UI canvas is collapsible. */
385
+ collapsibleA2UI?: boolean;
386
+ /** Maximum character limit for the user input. */
387
+ maxInputCharacter?: number;
388
+ /** Whether the chat backend streams responses. */
389
+ streaming?: boolean;
390
+ /** Whether to display tool calls in the message list. */
391
+ showToolCalls?: boolean;
392
+ /** Whether to display model reasoning steps in the message list. */
393
+ showReasoning?: boolean;
394
+ /** Whether to send the full message history on each request. */
395
+ sendHistory?: boolean;
396
+ };
397
+ /**
398
+ * Complete properties for the ChatManager component, which combines base properties
399
+ * with display mode specific options.
400
+ */
401
+ type ChatManagerProps = ChatManagerBaseProps & ({
402
+ display: 'floating';
403
+ displayOptions?: never;
404
+ } | {
405
+ display?: 'embedded';
406
+ displayOptions?: {
407
+ collapsible?: boolean;
408
+ isResizable?: boolean;
409
+ };
410
+ });
411
+ interface SessionListStyles {
412
+ containerStyle?: React.CSSProperties | string;
413
+ textStyle?: React.CSSProperties | string;
414
+ timeStyle?: React.CSSProperties | string;
415
+ listItemIconStyles?: {
416
+ icon?: ReactNode;
417
+ iconStyle?: React.CSSProperties | string;
418
+ };
419
+ listItemPinButtonStyles?: {
420
+ icon?: ReactNode;
421
+ iconStyles?: React.CSSProperties | string;
422
+ };
423
+ listItemMenuButtonStyles?: {
424
+ icon?: ReactNode;
425
+ iconStyle?: React.CSSProperties | string;
426
+ };
427
+ listItemRenameButtonStyles?: {
428
+ containerStyle: React.CSSProperties | string;
429
+ icon?: ReactNode;
430
+ iconStyle?: React.CSSProperties | string;
431
+ text?: ReactNode;
432
+ textStyle?: React.CSSProperties | string;
433
+ };
434
+ listItemDeleteButtonStyles?: {
435
+ containerStyle: React.CSSProperties | string;
436
+ icon?: ReactNode;
437
+ iconStyle?: React.CSSProperties | string;
438
+ text?: ReactNode;
439
+ textStyle?: React.CSSProperties | string;
440
+ };
441
+ }
442
+ interface NewConversationButtonStyles {
443
+ newConversationButtonStyle?: React.CSSProperties | string;
444
+ newConversationButtonIconStyle?: React.CSSProperties | string;
445
+ newConversationButtonTextStyle?: React.CSSProperties | string;
446
+ }
447
+ interface SessionManagerComponentStyles {
448
+ titleStyle?: React.CSSProperties | string;
449
+ listStyle?: SessionListStyles;
450
+ newConversationButtonStyles?: NewConversationButtonStyles;
451
+ }
452
+ /**
453
+ * Properties for configuring the SessionManager component.
454
+ */
455
+ interface SessionManagerProps {
456
+ /** Interval in milliseconds to sync sessions from the API. */
457
+ syncInterval?: number;
458
+ /** Main title for the session manager. */
459
+ label?: string;
460
+ /** Label for the 'Recent' section. */
461
+ recentLabel?: string;
462
+ className?: string;
463
+ style?: React.CSSProperties;
464
+ /** The position of the drawer or inline sidebar. */
465
+ position?: ComponentPosition;
466
+ /**
467
+ * If true or 'sheet', acts as a slide-out drawer.
468
+ * If 'inline', acts as a collapsible sidebar.
469
+ * If false, acts as a static container.
470
+ */
471
+ collapsible?: boolean | 'inline' | 'sheet';
472
+ /** Callback fired when a session is selected. */
473
+ onSessionSelect?: (sessionId: string) => void;
474
+ /** Callback fired when creating a new session. */
475
+ onNewSession?: () => void;
476
+ /** Advanced custom styling for internal components. */
477
+ sessionManagerComponentStyles?: SessionManagerComponentStyles;
478
+ }
479
+ type OmniChatBaseProps = {
480
+ theme?: ChatTheme;
481
+ apiEndpoint?: string;
482
+ chatManagerProps?: Omit<Partial<ChatManagerProps>, 'theme' | 'layout'>;
483
+ sessionStorageMode?: StorageMode;
484
+ sessionRoute?: string;
485
+ children?: ReactNode;
486
+ } & ({
487
+ useA2UI?: true;
488
+ a2uiProps: A2UIProps;
489
+ } | {
490
+ useA2UI: false;
491
+ a2uiProps?: never;
492
+ });
493
+ /**
494
+ * Props for `<OmniChat />`. The `chatApiSchema` prop is only accepted (and only
495
+ * meaningful) when `api_mode` is `'classic'`.
496
+ */
497
+ type OmniChatProps = OmniChatBaseProps & ({
498
+ api_mode: 'classic';
499
+ /**
500
+ * Maps OmniChatKit's internal message structure to your backend API's
501
+ * request/response shape. Provide `apiRequestSchema` to customize how
502
+ * messages are serialized before being sent, and `apiResponseSchema` to
503
+ * customize how the raw API response is parsed back into messages.
504
+ */
505
+ chatApiSchema?: ApiSchema;
506
+ } | {
507
+ api_mode: 'ag-ui';
508
+ chatApiSchema?: never;
509
+ });
510
+ /**
511
+ * Properties for configuring the Agentic UI (A2UI) system.
512
+ */
513
+ interface A2UIProps {
514
+ /** The current agent's identifier. */
515
+ agentId: string;
516
+ /** The name of the tool call used by the LLM to trigger a component render. */
517
+ a2uiToolName: string;
518
+ /** A2UI version compatibility flag. */
519
+ a2uiVersion?: 'V0.8' | 'V0.9' | 'V0.9.1' | 'V1.0';
520
+ /** Whether to inject the basic fallback catalog components. */
521
+ includeBasicCatalog?: boolean;
522
+ /** Whether to inject pre-built custom components. */
523
+ includePreBuiltCustomComponents?: boolean;
524
+ /** Internal layout representation. */
525
+ layout?: A2UILayout;
526
+ /** The mapping of component names to React implementations. */
527
+ catalog?: A2UICatalog;
528
+ /** Controls where the A2UI should render (inline in chat or detached). */
529
+ a2uiRenderingOption?: 'chat' | 'detached';
530
+ }
531
+ interface A2UICanvasProps {
532
+ emptyState?: React.ReactNode;
533
+ className?: string;
534
+ style?: React.CSSProperties;
535
+ }
536
+ /**
537
+ * State representing a Human-in-the-loop (HITL) interruption.
538
+ */
539
+ interface HITLState {
540
+ /** True if the chat is currently blocked waiting for human approval. */
541
+ isActive: boolean;
542
+ /** The pending action/payload that needs review. */
543
+ pendingAction: any | null;
544
+ /** Callback to approve the action. An optional modified payload can be provided. */
545
+ approve: (modifiedPayload?: any) => void;
546
+ /** Callback to reject the action with an optional reason. */
547
+ reject: (reason?: string) => void;
548
+ }
549
+ /**
550
+ * State representing active tool/streaming executions that can be interrupted.
551
+ */
552
+ interface InterruptState {
553
+ /** True if the AI is currently streaming a text response. */
554
+ isStreaming: boolean;
555
+ /** True if the AI is currently executing a backend tool call. */
556
+ isExecutingTool: boolean;
557
+ /** Cancels the ongoing text stream. */
558
+ haltStream: () => void;
559
+ /** Cancels the ongoing tool execution. */
560
+ cancelTool: () => void;
561
+ }
562
+ //#endregion
563
+ //#region src/store/useAIChatStore.d.ts
564
+ /** Allowed roles in a conversation. */
565
+ type Role = 'system' | 'user' | 'assistant' | 'tool';
566
+ /** Statuses for a human-in-the-loop interruption. */
567
+ type HITLStatus = 'none' | 'pending' | 'approved' | 'rejected';
568
+ /** Metadata structure for a chat session. */
569
+ interface ISessionMetadata {
570
+ tags?: string[];
571
+ summary?: string;
572
+ isPinned?: boolean;
573
+ [key: string]: any;
574
+ }
575
+ /** Represents a complete chat conversation. */
576
+ interface ChatSession {
577
+ id: string;
578
+ userId?: string;
579
+ title: string;
580
+ model: string;
581
+ systemStore?: string;
582
+ metadata: ISessionMetadata;
583
+ createdAt: Date | string;
584
+ updatedAt: Date | string;
585
+ messages?: ChatMessage[];
586
+ }
587
+ /** Describes a component render payload from the Agentic UI. */
588
+ interface A2UIPayload {
589
+ /** The component name, matching an entry in the A2UICatalog. */
590
+ name: string;
591
+ /** The props to pass to the component. */
592
+ props: Record<string, any>;
593
+ }
594
+ /** Represents a tool call made by the LLM. */
595
+ interface ToolCall {
596
+ /** Unique ID for the tool call (generated by the LLM). */
597
+ id: string;
598
+ type: 'function';
599
+ function: {
600
+ name: string;
601
+ /** JSON string of arguments. */
602
+ arguments: string;
603
+ };
604
+ }
605
+ /** Represents an action waiting for human approval. */
606
+ interface PendingAction {
607
+ toolCallId: string;
608
+ actionName: string;
609
+ description?: string;
610
+ /** The raw payload needing human review. */
611
+ unsafePayload: any;
612
+ }
613
+ /** Defines a single message within a chat session. */
614
+ interface ChatMessage {
615
+ id: string;
616
+ sessionId: string;
617
+ role: Role;
618
+ /** Can be empty if the message is purely a tool call/UI render. */
619
+ content: string;
620
+ componentPayload?: A2UIPayload;
621
+ toolCalls?: ToolCall[];
622
+ /** Required if role === 'tool'. */
623
+ toolCallId?: string;
624
+ hitlStatus: HITLStatus;
625
+ pendingAction?: PendingAction;
626
+ createdAt: Date | string;
627
+ }
628
+ /** Partial update object for a session. */
629
+ type SessionUpdate = Partial<Omit<ChatSession, 'id' | 'createdAt' | 'metadata'>> & {
630
+ metadata?: Partial<ISessionMetadata>;
631
+ };
632
+ /**
633
+ * The global Zustand state interface for OmniChatKit.
634
+ */
635
+ interface AIChatState {
636
+ theme: ChatTheme;
637
+ sessionStorageMode: StorageMode;
638
+ sessionRoute: string;
639
+ apiMode: 'classic' | 'ag-ui';
640
+ /** Schema that maps OmniChatKit's internal message format to the backend API (classic mode only). */
641
+ chatApiSchema: ApiSchema | undefined;
642
+ setTheme: (theme: ChatTheme) => void;
643
+ setSessionStorageMode: (mode: StorageMode) => void;
644
+ setSessionRoute: (endpoint: string) => void;
645
+ a2uiProps: A2UIProps | undefined;
646
+ setA2UIProps: (props: A2UIProps) => void;
647
+ setApiMode: (mode: 'classic' | 'ag-ui') => void;
648
+ setChatApiSchema: (schema: ApiSchema | undefined) => void;
649
+ pendingHITLAction: any | null;
650
+ setPendingHITLAction: (action: any | null) => void;
651
+ resumeExecution: (result: {
652
+ status: 'approved' | 'rejected';
653
+ payload?: any;
654
+ reason?: string;
655
+ }) => void;
656
+ setResumeExecution: (fn: (result: any) => void) => void;
657
+ sessions: ChatSession[];
658
+ activeSessionId: string | null;
659
+ setSessions: (sessions: ChatSession[]) => void;
660
+ setActiveSessionId: (id: string | null) => void;
661
+ loadSessions: () => Promise<ChatSession[]>;
662
+ getSession: (id: string) => Promise<ChatSession | undefined>;
663
+ createSession: (session: ChatSession) => Promise<ChatSession>;
664
+ ensureSession: (firstMessage: string, fallbackSessionId?: string) => Promise<string | undefined>;
665
+ replaceSession: (id: string, session: ChatSession) => Promise<ChatSession | undefined>;
666
+ updateSession: (id: string, update: SessionUpdate) => Promise<ChatSession | undefined>;
667
+ renameSession: (id: string, title: string) => Promise<ChatSession | undefined>;
668
+ setSessionPinned: (id: string, isPinned: boolean) => Promise<ChatSession | undefined>;
669
+ removeSession: (id: string) => Promise<void>;
670
+ updateSessionMessages: (id: string, messages: any[]) => Promise<ChatSession | undefined>;
671
+ }
672
+ declare const useAIChatStore: import("zustand").UseBoundStore<Omit<import("zustand").StoreApi<AIChatState>, "persist"> & {
673
+ persist: {
674
+ setOptions: (options: Partial<import("zustand/middleware").PersistOptions<AIChatState, unknown>>) => void;
675
+ clearStorage: () => void;
676
+ rehydrate: () => Promise<void> | void;
677
+ hasHydrated: () => boolean;
678
+ onHydrate: (fn: (state: AIChatState) => void) => () => void;
679
+ onFinishHydration: (fn: (state: AIChatState) => void) => () => void;
680
+ getOptions: () => Partial<import("zustand/middleware").PersistOptions<AIChatState, unknown>>;
681
+ };
682
+ }>;
683
+ //#endregion
684
+ //#region src/components/AIChatProvider.d.ts
685
+ type UseChatHelpers = ReturnType<typeof useChat>;
686
+ type ChatContextHelpers = UseChatHelpers & {
687
+ sessionStorageMode: StorageMode;
688
+ };
689
+ declare const AIChatContext: React$1.Context<ChatContextHelpers | null>;
690
+ /**
691
+ * Accesses the chat context provided by `AIChatProvider`.
692
+ * @returns The chat helpers provided by Vercel AI SDK and custom store configurations.
693
+ */
694
+ declare function useAIChatContext(): ChatContextHelpers;
695
+ //#endregion
696
+ //#region src/components/AGUIChatProvider.d.ts
697
+ declare const AGUIChatContext: React$1.Context<ChatContextHelpers | null>;
698
+ /**
699
+ * Accesses the chat context provided by `AGUIChatProvider`.
700
+ * @returns The custom AGUI chat helpers and store configurations.
701
+ */
702
+ declare function useAGUIChatContext(): ChatContextHelpers;
703
+ //#endregion
704
+ //#region src/hooks/useAGUIChat.d.ts
705
+ /**
706
+ * Adapts the `@ag-ui/client` `HttpAgent` to match the Vercel AI SDK `useChat` API surface.
707
+ * Handles state, streaming, tool executions, and action synchronization for the Agentic UI.
708
+ *
709
+ * @param config - Configuration options.
710
+ * @param config.api - The base URL of the Agentic UI backend endpoint.
711
+ * @param config.body - Additional body parameters to send with requests, such as `sessionId`.
712
+ * @param config.agentId - The specific agent identifier, appended to the API route.
713
+ * @returns An object matching the Vercel AI SDK `UseChatHelpers` interface, plus custom event data.
714
+ */
715
+ declare function useAGUIChat({ api, body, agentId }: {
716
+ api: string;
717
+ body?: Record<string, any>;
718
+ agentId?: string;
719
+ }): UseChatHelpers;
720
+ //#endregion
721
+ //#region src/hooks/useChatContext.d.ts
722
+ /**
723
+ * `useChatContext` is a convenience hook that automatically returns the correct
724
+ * chat context — either {@link AIChatContext} (classic) or {@link AGUIChatContext}
725
+ * (ag-ui) — based on whichever provider is present in the React tree.
726
+ *
727
+ * When used inside `<OmniChat>`, the correct provider is rendered automatically.
728
+ * When both providers are somehow present simultaneously, `apiMode` from the store
729
+ * (set by `<OmniChat api_mode="...">`) is used as a tiebreaker.
730
+ *
731
+ * This hook intentionally does NOT rely on the `apiMode` store value as the primary
732
+ * signal to avoid race conditions: `useEffect` (which syncs `api_mode` to the store)
733
+ * runs after the first render, meaning the store default would always win on mount.
734
+ *
735
+ * @throws If neither context is available in the React tree.
736
+ *
737
+ * @example
738
+ * const { messages, append, status } = useChatContext();
739
+ */
740
+ declare function useChatContext(): ChatContextHelpers;
741
+ //#endregion
742
+ //#region src/components/ChatManager.d.ts
743
+ /**
744
+ * The core Chat UI component that manages message rendering, input state,
745
+ * and user interactions. It automatically connects to the nearest
746
+ * `AIChatProvider` or `AGUIChatProvider` context.
747
+ *
748
+ * @param props - Customization and configuration properties for the chat UI.
749
+ * @returns A rendered chat interface component.
750
+ */
751
+ declare function ChatManager({ theme, className, style, chatManagerComponentStyles, position, display, displayOptions, collapseToggleButtonPosition, toggleButtonProps, defaultOpen, autoScroll, inputProps, welcomeScreen, labels, promptChips, agentId, a2uiPosition, collapsibleA2UI, maxInputCharacter, streaming, showToolCalls, showReasoning, sendHistory, inputTypeList }: ChatManagerProps): React$1.JSX.Element | null;
752
+ //#endregion
753
+ //#region src/components/SessionManager.d.ts
754
+ /**
755
+ * A sidebar or drawer component that manages chat sessions (history).
756
+ * Allows users to switch between past conversations, rename them, pin them,
757
+ * or delete them. Connects automatically to the `useAIChatStore`.
758
+ *
759
+ * @param props - Configuration and styling options for the session list.
760
+ * @returns A rendered session manager UI component.
761
+ */
762
+ declare function SessionManager({ label, recentLabel, className, style, position, collapsible, onSessionSelect, onNewSession, sessionManagerComponentStyles }: SessionManagerProps): React$1.JSX.Element | null;
763
+ //#endregion
764
+ //#region src/components/A2UICanvas.d.ts
765
+ /**
766
+ * Renders the Agentic UI (A2UI) surface. It listens to the `surfaceBus` for
767
+ * UI rendering operations and recursively mounts dynamic components based on
768
+ * the LLM's instructions.
769
+ *
770
+ * @param props - Configuration properties for the canvas.
771
+ * @returns The rendered UI canvas.
772
+ */
773
+ declare function A2UICanvas({ emptyState, className, style }?: A2UICanvasProps): React$1.JSX.Element | null;
774
+ //#endregion
775
+ //#region src/components/OmniChat.d.ts
776
+ /**
777
+ * The main wrapper component for OmniChatKit.
778
+ * It initializes the global state, sets up the chat provider based on the `api_mode`,
779
+ * and manages session configurations. All other OmniChatKit components (like `ChatManager`
780
+ * and `SessionManager`) should be rendered inside this provider.
781
+ *
782
+ * @param props - Configuration properties for the OmniChat instance.
783
+ * @returns A wrapped React element providing chat context to its children.
784
+ */
785
+ declare function OmniChat({ api_mode, theme, useA2UI, a2uiProps, apiEndpoint, chatApiSchema, chatManagerProps, sessionStorageMode, sessionRoute, children }: OmniChatProps): React$1.JSX.Element;
786
+ //#endregion
787
+ //#region src/hooks/useHITL.d.ts
788
+ /**
789
+ * Hook to manage Human-in-the-Loop (HITL) interactions.
790
+ * It provides the state of any pending actions and functions to approve or reject them.
791
+ *
792
+ * @returns The current HITL state containing any pending action and handler functions.
793
+ */
794
+ declare function useHITL(): HITLState;
795
+ //#endregion
796
+ //#region src/hooks/useInterrupts.d.ts
797
+ /**
798
+ * Hook to manage interrupt signals for the active chat stream.
799
+ * Allows the user to halt a generation in progress.
800
+ *
801
+ * @returns The interrupt state, including whether the stream is active and functions to cancel it.
802
+ */
803
+ declare function useInterrupts(): InterruptState;
804
+ //#endregion
805
+ //#region src/components/a2ui/renderers.d.ts
806
+ interface RendererProps<T = any> {
807
+ props: T;
808
+ children?: any;
809
+ dispatch?: (payload: any) => void;
810
+ }
811
+ //#endregion
812
+ //#region src/components/a2ui/definitions.d.ts
813
+ declare const definitions: {
814
+ Stack: {
815
+ description: string;
816
+ props: z.ZodObject<{
817
+ children: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodObject<{
818
+ componentId: z.ZodString;
819
+ path: z.ZodString;
820
+ }, "strip", z.ZodTypeAny, {
821
+ componentId: string;
822
+ path: string;
823
+ }, {
824
+ componentId: string;
825
+ path: string;
826
+ }>]>;
827
+ gap: z.ZodOptional<z.ZodEnum<["xs", "sm", "md", "lg", "xl"]>>;
828
+ align: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
829
+ }, "strip", z.ZodTypeAny, {
830
+ children: string[] | {
831
+ componentId: string;
832
+ path: string;
833
+ };
834
+ gap?: "lg" | "md" | "sm" | "xl" | "xs" | undefined;
835
+ align?: "center" | "end" | "start" | "stretch" | undefined;
836
+ }, {
837
+ children: string[] | {
838
+ componentId: string;
839
+ path: string;
840
+ };
841
+ gap?: "lg" | "md" | "sm" | "xl" | "xs" | undefined;
842
+ align?: "center" | "end" | "start" | "stretch" | undefined;
843
+ }>;
844
+ };
845
+ Row: {
846
+ description: string;
847
+ props: z.ZodObject<{
848
+ children: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodObject<{
849
+ componentId: z.ZodString;
850
+ path: z.ZodString;
851
+ }, "strip", z.ZodTypeAny, {
852
+ componentId: string;
853
+ path: string;
854
+ }, {
855
+ componentId: string;
856
+ path: string;
857
+ }>]>;
858
+ gap: z.ZodOptional<z.ZodEnum<["xs", "sm", "md", "lg"]>>;
859
+ justify: z.ZodOptional<z.ZodEnum<["start", "center", "end", "spaceBetween"]>>;
860
+ align: z.ZodOptional<z.ZodEnum<["start", "center", "end"]>>;
861
+ }, "strip", z.ZodTypeAny, {
862
+ children: string[] | {
863
+ componentId: string;
864
+ path: string;
865
+ };
866
+ gap?: "lg" | "md" | "sm" | "xs" | undefined;
867
+ justify?: "center" | "end" | "spaceBetween" | "start" | undefined;
868
+ align?: "center" | "end" | "start" | undefined;
869
+ }, {
870
+ children: string[] | {
871
+ componentId: string;
872
+ path: string;
873
+ };
874
+ gap?: "lg" | "md" | "sm" | "xs" | undefined;
875
+ justify?: "center" | "end" | "spaceBetween" | "start" | undefined;
876
+ align?: "center" | "end" | "start" | undefined;
877
+ }>;
878
+ };
879
+ Grid: {
880
+ description: string;
881
+ props: z.ZodObject<{
882
+ children: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodObject<{
883
+ componentId: z.ZodString;
884
+ path: z.ZodString;
885
+ }, "strip", z.ZodTypeAny, {
886
+ componentId: string;
887
+ path: string;
888
+ }, {
889
+ componentId: string;
890
+ path: string;
891
+ }>]>;
892
+ columns: z.ZodOptional<z.ZodNumber>;
893
+ gap: z.ZodOptional<z.ZodEnum<["xs", "sm", "md", "lg"]>>;
894
+ }, "strip", z.ZodTypeAny, {
895
+ children: string[] | {
896
+ componentId: string;
897
+ path: string;
898
+ };
899
+ columns?: number | undefined;
900
+ gap?: "lg" | "md" | "sm" | "xs" | undefined;
901
+ }, {
902
+ children: string[] | {
903
+ componentId: string;
904
+ path: string;
905
+ };
906
+ columns?: number | undefined;
907
+ gap?: "lg" | "md" | "sm" | "xs" | undefined;
908
+ }>;
909
+ };
910
+ Section: {
911
+ description: string;
912
+ props: z.ZodObject<{
913
+ title: z.ZodString;
914
+ eyebrow: z.ZodOptional<z.ZodString>;
915
+ children: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodObject<{
916
+ componentId: z.ZodString;
917
+ path: z.ZodString;
918
+ }, "strip", z.ZodTypeAny, {
919
+ componentId: string;
920
+ path: string;
921
+ }, {
922
+ componentId: string;
923
+ path: string;
924
+ }>]>;
925
+ }, "strip", z.ZodTypeAny, {
926
+ title: string;
927
+ eyebrow?: string | undefined;
928
+ children: string[] | {
929
+ componentId: string;
930
+ path: string;
931
+ };
932
+ }, {
933
+ title: string;
934
+ eyebrow?: string | undefined;
935
+ children: string[] | {
936
+ componentId: string;
937
+ path: string;
938
+ };
939
+ }>;
940
+ };
941
+ Card: {
942
+ description: string;
943
+ props: z.ZodObject<{
944
+ child: z.ZodString;
945
+ tone: z.ZodOptional<z.ZodEnum<["default", "lilac", "mint", "warning"]>>;
946
+ }, "strip", z.ZodTypeAny, {
947
+ child: string;
948
+ tone?: "default" | "lilac" | "mint" | "warning" | undefined;
949
+ }, {
950
+ child: string;
951
+ tone?: "default" | "lilac" | "mint" | "warning" | undefined;
952
+ }>;
953
+ };
954
+ Divider: {
955
+ description: string;
956
+ props: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
957
+ };
958
+ InfoRow: {
959
+ description: string;
960
+ props: z.ZodObject<{
961
+ label: z.ZodUnion<[z.ZodString, z.ZodObject<{
962
+ path: z.ZodString;
963
+ }, "strip", z.ZodTypeAny, {
964
+ path: string;
965
+ }, {
966
+ path: string;
967
+ }>]>;
968
+ value: z.ZodUnion<[z.ZodString, z.ZodObject<{
969
+ path: z.ZodString;
970
+ }, "strip", z.ZodTypeAny, {
971
+ path: string;
972
+ }, {
973
+ path: string;
974
+ }>]>;
975
+ }, "strip", z.ZodTypeAny, {
976
+ label: string | {
977
+ path: string;
978
+ };
979
+ value: string | {
980
+ path: string;
981
+ };
982
+ }, {
983
+ label: string | {
984
+ path: string;
985
+ };
986
+ value: string | {
987
+ path: string;
988
+ };
989
+ }>;
990
+ };
991
+ Heading: {
992
+ description: string;
993
+ props: z.ZodObject<{
994
+ text: z.ZodUnion<[z.ZodString, z.ZodObject<{
995
+ path: z.ZodString;
996
+ }, "strip", z.ZodTypeAny, {
997
+ path: string;
998
+ }, {
999
+ path: string;
1000
+ }>]>;
1001
+ level: z.ZodOptional<z.ZodEnum<["1", "2", "3"]>>;
1002
+ }, "strip", z.ZodTypeAny, {
1003
+ text: string | {
1004
+ path: string;
1005
+ };
1006
+ level?: "1" | "2" | "3" | undefined;
1007
+ }, {
1008
+ text: string | {
1009
+ path: string;
1010
+ };
1011
+ level?: "1" | "2" | "3" | undefined;
1012
+ }>;
1013
+ };
1014
+ Text: {
1015
+ description: string;
1016
+ props: z.ZodObject<{
1017
+ text: z.ZodUnion<[z.ZodString, z.ZodObject<{
1018
+ path: z.ZodString;
1019
+ }, "strip", z.ZodTypeAny, {
1020
+ path: string;
1021
+ }, {
1022
+ path: string;
1023
+ }>]>;
1024
+ variant: z.ZodOptional<z.ZodEnum<["h1", "h2", "h3", "h4", "h5", "caption", "body"]>>;
1025
+ }, "strip", z.ZodTypeAny, {
1026
+ text: string | {
1027
+ path: string;
1028
+ };
1029
+ variant?: "body" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | undefined;
1030
+ }, {
1031
+ text: string | {
1032
+ path: string;
1033
+ };
1034
+ variant?: "body" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | undefined;
1035
+ }>;
1036
+ };
1037
+ Image: {
1038
+ description: string;
1039
+ props: z.ZodObject<{
1040
+ url: z.ZodUnion<[z.ZodString, z.ZodObject<{
1041
+ path: z.ZodString;
1042
+ }, "strip", z.ZodTypeAny, {
1043
+ path: string;
1044
+ }, {
1045
+ path: string;
1046
+ }>]>;
1047
+ description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1048
+ path: z.ZodString;
1049
+ }, "strip", z.ZodTypeAny, {
1050
+ path: string;
1051
+ }, {
1052
+ path: string;
1053
+ }>]>>;
1054
+ fit: z.ZodOptional<z.ZodEnum<["cover", "contain", "fill", "none", "scaleDown"]>>;
1055
+ variant: z.ZodOptional<z.ZodString>;
1056
+ }, "strip", z.ZodTypeAny, {
1057
+ url: string | {
1058
+ path: string;
1059
+ };
1060
+ description?: string | {
1061
+ path: string;
1062
+ } | undefined;
1063
+ fit?: "contain" | "cover" | "fill" | "none" | "scaleDown" | undefined;
1064
+ variant?: string | undefined;
1065
+ }, {
1066
+ url: string | {
1067
+ path: string;
1068
+ };
1069
+ description?: string | {
1070
+ path: string;
1071
+ } | undefined;
1072
+ fit?: "contain" | "cover" | "fill" | "none" | "scaleDown" | undefined;
1073
+ variant?: string | undefined;
1074
+ }>;
1075
+ };
1076
+ Icon: {
1077
+ description: string;
1078
+ props: z.ZodObject<{
1079
+ name: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodObject<{
1080
+ path: z.ZodString;
1081
+ }, "strip", z.ZodTypeAny, {
1082
+ path: string;
1083
+ }, {
1084
+ path: string;
1085
+ }>]>, z.ZodObject<{
1086
+ svgPath: z.ZodUnion<[z.ZodString, z.ZodObject<{
1087
+ path: z.ZodString;
1088
+ }, "strip", z.ZodTypeAny, {
1089
+ path: string;
1090
+ }, {
1091
+ path: string;
1092
+ }>]>;
1093
+ }, "strip", z.ZodTypeAny, {
1094
+ svgPath: string | {
1095
+ path: string;
1096
+ };
1097
+ }, {
1098
+ svgPath: string | {
1099
+ path: string;
1100
+ };
1101
+ }>]>;
1102
+ }, "strip", z.ZodTypeAny, {
1103
+ name: string | {
1104
+ path: string;
1105
+ } | {
1106
+ svgPath: string | {
1107
+ path: string;
1108
+ };
1109
+ };
1110
+ }, {
1111
+ name: string | {
1112
+ path: string;
1113
+ } | {
1114
+ svgPath: string | {
1115
+ path: string;
1116
+ };
1117
+ };
1118
+ }>;
1119
+ };
1120
+ Video: {
1121
+ description: string;
1122
+ props: z.ZodObject<{
1123
+ url: z.ZodUnion<[z.ZodString, z.ZodObject<{
1124
+ path: z.ZodString;
1125
+ }, "strip", z.ZodTypeAny, {
1126
+ path: string;
1127
+ }, {
1128
+ path: string;
1129
+ }>]>;
1130
+ }, "strip", z.ZodTypeAny, {
1131
+ url: string | {
1132
+ path: string;
1133
+ };
1134
+ }, {
1135
+ url: string | {
1136
+ path: string;
1137
+ };
1138
+ }>;
1139
+ };
1140
+ AudioPlayer: {
1141
+ description: string;
1142
+ props: z.ZodObject<{
1143
+ url: z.ZodUnion<[z.ZodString, z.ZodObject<{
1144
+ path: z.ZodString;
1145
+ }, "strip", z.ZodTypeAny, {
1146
+ path: string;
1147
+ }, {
1148
+ path: string;
1149
+ }>]>;
1150
+ description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1151
+ path: z.ZodString;
1152
+ }, "strip", z.ZodTypeAny, {
1153
+ path: string;
1154
+ }, {
1155
+ path: string;
1156
+ }>]>>;
1157
+ }, "strip", z.ZodTypeAny, {
1158
+ url: string | {
1159
+ path: string;
1160
+ };
1161
+ description?: string | {
1162
+ path: string;
1163
+ } | undefined;
1164
+ }, {
1165
+ url: string | {
1166
+ path: string;
1167
+ };
1168
+ description?: string | {
1169
+ path: string;
1170
+ } | undefined;
1171
+ }>;
1172
+ };
1173
+ Column: {
1174
+ description: string;
1175
+ props: z.ZodObject<{
1176
+ children: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodObject<{
1177
+ componentId: z.ZodString;
1178
+ path: z.ZodString;
1179
+ }, "strip", z.ZodTypeAny, {
1180
+ componentId: string;
1181
+ path: string;
1182
+ }, {
1183
+ componentId: string;
1184
+ path: string;
1185
+ }>]>;
1186
+ gap: z.ZodOptional<z.ZodEnum<["xs", "sm", "md", "lg", "xl"]>>;
1187
+ justify: z.ZodOptional<z.ZodEnum<["start", "center", "end", "spaceBetween"]>>;
1188
+ align: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
1189
+ weight: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodNumber, "many">, z.ZodObject<{
1190
+ path: z.ZodString;
1191
+ }, "strip", z.ZodTypeAny, {
1192
+ path: string;
1193
+ }, {
1194
+ path: string;
1195
+ }>]>>;
1196
+ }, "strip", z.ZodTypeAny, {
1197
+ children: string[] | {
1198
+ componentId: string;
1199
+ path: string;
1200
+ };
1201
+ gap?: "lg" | "md" | "sm" | "xl" | "xs" | undefined;
1202
+ justify?: "center" | "end" | "spaceBetween" | "start" | undefined;
1203
+ align?: "center" | "end" | "start" | "stretch" | undefined;
1204
+ weight?: number[] | {
1205
+ path: string;
1206
+ } | undefined;
1207
+ }, {
1208
+ children: string[] | {
1209
+ componentId: string;
1210
+ path: string;
1211
+ };
1212
+ gap?: "lg" | "md" | "sm" | "xl" | "xs" | undefined;
1213
+ justify?: "center" | "end" | "spaceBetween" | "start" | undefined;
1214
+ align?: "center" | "end" | "start" | "stretch" | undefined;
1215
+ weight?: number[] | {
1216
+ path: string;
1217
+ } | undefined;
1218
+ }>;
1219
+ };
1220
+ List: {
1221
+ description: string;
1222
+ props: z.ZodObject<{
1223
+ children: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodObject<{
1224
+ componentId: z.ZodString;
1225
+ path: z.ZodString;
1226
+ }, "strip", z.ZodTypeAny, {
1227
+ componentId: string;
1228
+ path: string;
1229
+ }, {
1230
+ componentId: string;
1231
+ path: string;
1232
+ }>]>>;
1233
+ items: z.ZodOptional<z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodObject<{
1234
+ componentId: z.ZodString;
1235
+ path: z.ZodString;
1236
+ }, "strip", z.ZodTypeAny, {
1237
+ componentId: string;
1238
+ path: string;
1239
+ }, {
1240
+ componentId: string;
1241
+ path: string;
1242
+ }>]>>;
1243
+ direction: z.ZodOptional<z.ZodEnum<["vertical", "horizontal"]>>;
1244
+ align: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
1245
+ }, "strip", z.ZodTypeAny, {
1246
+ children?: string[] | {
1247
+ componentId: string;
1248
+ path: string;
1249
+ } | undefined;
1250
+ items?: string[] | {
1251
+ componentId: string;
1252
+ path: string;
1253
+ } | undefined;
1254
+ direction?: "horizontal" | "vertical" | undefined;
1255
+ align?: "center" | "end" | "start" | "stretch" | undefined;
1256
+ }, {
1257
+ children?: string[] | {
1258
+ componentId: string;
1259
+ path: string;
1260
+ } | undefined;
1261
+ items?: string[] | {
1262
+ componentId: string;
1263
+ path: string;
1264
+ } | undefined;
1265
+ direction?: "horizontal" | "vertical" | undefined;
1266
+ align?: "center" | "end" | "start" | "stretch" | undefined;
1267
+ }>;
1268
+ };
1269
+ Tabs: {
1270
+ description: string;
1271
+ props: z.ZodObject<{
1272
+ tabs: z.ZodArray<z.ZodObject<{
1273
+ title: z.ZodUnion<[z.ZodString, z.ZodObject<{
1274
+ path: z.ZodString;
1275
+ }, "strip", z.ZodTypeAny, {
1276
+ path: string;
1277
+ }, {
1278
+ path: string;
1279
+ }>]>;
1280
+ child: z.ZodString;
1281
+ }, "strip", z.ZodTypeAny, {
1282
+ title: string | {
1283
+ path: string;
1284
+ };
1285
+ child: string;
1286
+ }, {
1287
+ title: string | {
1288
+ path: string;
1289
+ };
1290
+ child: string;
1291
+ }>, "many">;
1292
+ }, "strip", z.ZodTypeAny, {
1293
+ tabs: {
1294
+ title: string | {
1295
+ path: string;
1296
+ };
1297
+ child: string;
1298
+ }[];
1299
+ }, {
1300
+ tabs: {
1301
+ title: string | {
1302
+ path: string;
1303
+ };
1304
+ child: string;
1305
+ }[];
1306
+ }>;
1307
+ };
1308
+ Modal: {
1309
+ description: string;
1310
+ props: z.ZodObject<{
1311
+ trigger: z.ZodString;
1312
+ content: z.ZodString;
1313
+ }, "strip", z.ZodTypeAny, {
1314
+ trigger: string;
1315
+ content: string;
1316
+ }, {
1317
+ trigger: string;
1318
+ content: string;
1319
+ }>;
1320
+ };
1321
+ CheckBox: {
1322
+ description: string;
1323
+ props: z.ZodObject<{
1324
+ label: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1325
+ path: z.ZodString;
1326
+ }, "strip", z.ZodTypeAny, {
1327
+ path: string;
1328
+ }, {
1329
+ path: string;
1330
+ }>]>>;
1331
+ value: z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
1332
+ path: z.ZodString;
1333
+ }, "strip", z.ZodTypeAny, {
1334
+ path: string;
1335
+ }, {
1336
+ path: string;
1337
+ }>]>;
1338
+ }, "strip", z.ZodTypeAny, {
1339
+ label?: string | {
1340
+ path: string;
1341
+ } | undefined;
1342
+ value: boolean | {
1343
+ path: string;
1344
+ };
1345
+ }, {
1346
+ label?: string | {
1347
+ path: string;
1348
+ } | undefined;
1349
+ value: boolean | {
1350
+ path: string;
1351
+ };
1352
+ }>;
1353
+ };
1354
+ TextField: {
1355
+ description: string;
1356
+ props: z.ZodObject<{
1357
+ label: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1358
+ path: z.ZodString;
1359
+ }, "strip", z.ZodTypeAny, {
1360
+ path: string;
1361
+ }, {
1362
+ path: string;
1363
+ }>]>>;
1364
+ value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1365
+ path: z.ZodString;
1366
+ }, "strip", z.ZodTypeAny, {
1367
+ path: string;
1368
+ }, {
1369
+ path: string;
1370
+ }>]>>;
1371
+ variant: z.ZodOptional<z.ZodEnum<["shortText", "longText", "number", "obscured"]>>;
1372
+ checks: z.ZodOptional<z.ZodAny>;
1373
+ validationRegexp: z.ZodOptional<z.ZodString>;
1374
+ }, "strip", z.ZodTypeAny, {
1375
+ label?: string | {
1376
+ path: string;
1377
+ } | undefined;
1378
+ value?: string | {
1379
+ path: string;
1380
+ } | undefined;
1381
+ variant?: "longText" | "number" | "obscured" | "shortText" | undefined;
1382
+ checks?: any;
1383
+ validationRegexp?: string | undefined;
1384
+ }, {
1385
+ label?: string | {
1386
+ path: string;
1387
+ } | undefined;
1388
+ value?: string | {
1389
+ path: string;
1390
+ } | undefined;
1391
+ variant?: "longText" | "number" | "obscured" | "shortText" | undefined;
1392
+ checks?: any;
1393
+ validationRegexp?: string | undefined;
1394
+ }>;
1395
+ };
1396
+ ChoicePicker: {
1397
+ description: string;
1398
+ props: z.ZodObject<{
1399
+ options: z.ZodUnion<[z.ZodArray<z.ZodObject<{
1400
+ label: z.ZodString;
1401
+ value: z.ZodString;
1402
+ }, "strip", z.ZodTypeAny, {
1403
+ label: string;
1404
+ value: string;
1405
+ }, {
1406
+ label: string;
1407
+ value: string;
1408
+ }>, "many">, z.ZodObject<{
1409
+ path: z.ZodString;
1410
+ }, "strip", z.ZodTypeAny, {
1411
+ path: string;
1412
+ }, {
1413
+ path: string;
1414
+ }>]>;
1415
+ value: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">, z.ZodObject<{
1416
+ path: z.ZodString;
1417
+ }, "strip", z.ZodTypeAny, {
1418
+ path: string;
1419
+ }, {
1420
+ path: string;
1421
+ }>]>;
1422
+ variant: z.ZodOptional<z.ZodEnum<["mutuallyExclusive", "multipleSelection"]>>;
1423
+ }, "strip", z.ZodTypeAny, {
1424
+ options: {
1425
+ label: string;
1426
+ value: string;
1427
+ }[] | {
1428
+ path: string;
1429
+ };
1430
+ value: string | string[] | {
1431
+ path: string;
1432
+ };
1433
+ variant?: "multipleSelection" | "mutuallyExclusive" | undefined;
1434
+ }, {
1435
+ options: {
1436
+ label: string;
1437
+ value: string;
1438
+ }[] | {
1439
+ path: string;
1440
+ };
1441
+ value: string | string[] | {
1442
+ path: string;
1443
+ };
1444
+ variant?: "multipleSelection" | "mutuallyExclusive" | undefined;
1445
+ }>;
1446
+ };
1447
+ Slider: {
1448
+ description: string;
1449
+ props: z.ZodObject<{
1450
+ value: z.ZodUnion<[z.ZodNumber, z.ZodObject<{
1451
+ path: z.ZodString;
1452
+ }, "strip", z.ZodTypeAny, {
1453
+ path: string;
1454
+ }, {
1455
+ path: string;
1456
+ }>]>;
1457
+ min: z.ZodOptional<z.ZodNumber>;
1458
+ max: z.ZodOptional<z.ZodNumber>;
1459
+ }, "strip", z.ZodTypeAny, {
1460
+ value: number | {
1461
+ path: string;
1462
+ };
1463
+ min?: number | undefined;
1464
+ max?: number | undefined;
1465
+ }, {
1466
+ value: number | {
1467
+ path: string;
1468
+ };
1469
+ min?: number | undefined;
1470
+ max?: number | undefined;
1471
+ }>;
1472
+ };
1473
+ DateTimeInput: {
1474
+ description: string;
1475
+ props: z.ZodObject<{
1476
+ value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1477
+ path: z.ZodString;
1478
+ }, "strip", z.ZodTypeAny, {
1479
+ path: string;
1480
+ }, {
1481
+ path: string;
1482
+ }>]>>;
1483
+ label: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1484
+ path: z.ZodString;
1485
+ }, "strip", z.ZodTypeAny, {
1486
+ path: string;
1487
+ }, {
1488
+ path: string;
1489
+ }>]>>;
1490
+ enableDate: z.ZodOptional<z.ZodBoolean>;
1491
+ enableTime: z.ZodOptional<z.ZodBoolean>;
1492
+ min: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1493
+ path: z.ZodString;
1494
+ }, "strip", z.ZodTypeAny, {
1495
+ path: string;
1496
+ }, {
1497
+ path: string;
1498
+ }>]>>;
1499
+ max: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1500
+ path: z.ZodString;
1501
+ }, "strip", z.ZodTypeAny, {
1502
+ path: string;
1503
+ }, {
1504
+ path: string;
1505
+ }>]>>;
1506
+ }, "strip", z.ZodTypeAny, {
1507
+ value?: string | {
1508
+ path: string;
1509
+ } | undefined;
1510
+ label?: string | {
1511
+ path: string;
1512
+ } | undefined;
1513
+ enableDate?: boolean | undefined;
1514
+ enableTime?: boolean | undefined;
1515
+ min?: string | {
1516
+ path: string;
1517
+ } | undefined;
1518
+ max?: string | {
1519
+ path: string;
1520
+ } | undefined;
1521
+ }, {
1522
+ value?: string | {
1523
+ path: string;
1524
+ } | undefined;
1525
+ label?: string | {
1526
+ path: string;
1527
+ } | undefined;
1528
+ enableDate?: boolean | undefined;
1529
+ enableTime?: boolean | undefined;
1530
+ min?: string | {
1531
+ path: string;
1532
+ } | undefined;
1533
+ max?: string | {
1534
+ path: string;
1535
+ } | undefined;
1536
+ }>;
1537
+ };
1538
+ Overline: {
1539
+ description: string;
1540
+ props: z.ZodObject<{
1541
+ text: z.ZodUnion<[z.ZodString, z.ZodObject<{
1542
+ path: z.ZodString;
1543
+ }, "strip", z.ZodTypeAny, {
1544
+ path: string;
1545
+ }, {
1546
+ path: string;
1547
+ }>]>;
1548
+ }, "strip", z.ZodTypeAny, {
1549
+ text: string | {
1550
+ path: string;
1551
+ };
1552
+ }, {
1553
+ text: string | {
1554
+ path: string;
1555
+ };
1556
+ }>;
1557
+ };
1558
+ Badge: {
1559
+ description: string;
1560
+ props: z.ZodObject<{
1561
+ label: z.ZodUnion<[z.ZodString, z.ZodObject<{
1562
+ path: z.ZodString;
1563
+ }, "strip", z.ZodTypeAny, {
1564
+ path: string;
1565
+ }, {
1566
+ path: string;
1567
+ }>]>;
1568
+ tone: z.ZodOptional<z.ZodEnum<["neutral", "positive", "warning", "danger", "info"]>>;
1569
+ }, "strip", z.ZodTypeAny, {
1570
+ label: string | {
1571
+ path: string;
1572
+ };
1573
+ tone?: "danger" | "info" | "neutral" | "positive" | "warning" | undefined;
1574
+ }, {
1575
+ label: string | {
1576
+ path: string;
1577
+ };
1578
+ tone?: "danger" | "info" | "neutral" | "positive" | "warning" | undefined;
1579
+ }>;
1580
+ };
1581
+ StatusBadge: {
1582
+ description: string;
1583
+ props: z.ZodObject<{
1584
+ label: z.ZodUnion<[z.ZodString, z.ZodObject<{
1585
+ path: z.ZodString;
1586
+ }, "strip", z.ZodTypeAny, {
1587
+ path: string;
1588
+ }, {
1589
+ path: string;
1590
+ }>]>;
1591
+ status: z.ZodOptional<z.ZodEnum<["positive", "negative", "warning", "neutral"]>>;
1592
+ }, "strip", z.ZodTypeAny, {
1593
+ label: string | {
1594
+ path: string;
1595
+ };
1596
+ status?: "negative" | "neutral" | "positive" | "warning" | undefined;
1597
+ }, {
1598
+ label: string | {
1599
+ path: string;
1600
+ };
1601
+ status?: "negative" | "neutral" | "positive" | "warning" | undefined;
1602
+ }>;
1603
+ };
1604
+ Callout: {
1605
+ description: string;
1606
+ props: z.ZodObject<{
1607
+ body: z.ZodUnion<[z.ZodString, z.ZodObject<{
1608
+ path: z.ZodString;
1609
+ }, "strip", z.ZodTypeAny, {
1610
+ path: string;
1611
+ }, {
1612
+ path: string;
1613
+ }>]>;
1614
+ title: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1615
+ path: z.ZodString;
1616
+ }, "strip", z.ZodTypeAny, {
1617
+ path: string;
1618
+ }, {
1619
+ path: string;
1620
+ }>]>>;
1621
+ tone: z.ZodOptional<z.ZodEnum<["info", "positive", "warning", "neutral"]>>;
1622
+ }, "strip", z.ZodTypeAny, {
1623
+ body: string | {
1624
+ path: string;
1625
+ };
1626
+ title?: string | {
1627
+ path: string;
1628
+ } | undefined;
1629
+ tone?: "info" | "neutral" | "positive" | "warning" | undefined;
1630
+ }, {
1631
+ body: string | {
1632
+ path: string;
1633
+ };
1634
+ title?: string | {
1635
+ path: string;
1636
+ } | undefined;
1637
+ tone?: "info" | "neutral" | "positive" | "warning" | undefined;
1638
+ }>;
1639
+ };
1640
+ BulletList: {
1641
+ description: string;
1642
+ props: z.ZodObject<{
1643
+ items: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodObject<{
1644
+ path: z.ZodString;
1645
+ }, "strip", z.ZodTypeAny, {
1646
+ path: string;
1647
+ }, {
1648
+ path: string;
1649
+ }>]>;
1650
+ ordered: z.ZodOptional<z.ZodBoolean>;
1651
+ }, "strip", z.ZodTypeAny, {
1652
+ items: string[] | {
1653
+ path: string;
1654
+ };
1655
+ ordered?: boolean | undefined;
1656
+ }, {
1657
+ items: string[] | {
1658
+ path: string;
1659
+ };
1660
+ ordered?: boolean | undefined;
1661
+ }>;
1662
+ };
1663
+ StatCard: {
1664
+ description: string;
1665
+ props: z.ZodObject<{
1666
+ label: z.ZodUnion<[z.ZodString, z.ZodObject<{
1667
+ path: z.ZodString;
1668
+ }, "strip", z.ZodTypeAny, {
1669
+ path: string;
1670
+ }, {
1671
+ path: string;
1672
+ }>]>;
1673
+ value: z.ZodUnion<[z.ZodString, z.ZodObject<{
1674
+ path: z.ZodString;
1675
+ }, "strip", z.ZodTypeAny, {
1676
+ path: string;
1677
+ }, {
1678
+ path: string;
1679
+ }>]>;
1680
+ delta: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1681
+ path: z.ZodString;
1682
+ }, "strip", z.ZodTypeAny, {
1683
+ path: string;
1684
+ }, {
1685
+ path: string;
1686
+ }>]>>;
1687
+ deltaTone: z.ZodOptional<z.ZodEnum<["positive", "negative", "neutral"]>>;
1688
+ caption: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1689
+ path: z.ZodString;
1690
+ }, "strip", z.ZodTypeAny, {
1691
+ path: string;
1692
+ }, {
1693
+ path: string;
1694
+ }>]>>;
1695
+ }, "strip", z.ZodTypeAny, {
1696
+ label: string | {
1697
+ path: string;
1698
+ };
1699
+ value: string | {
1700
+ path: string;
1701
+ };
1702
+ delta?: string | {
1703
+ path: string;
1704
+ } | undefined;
1705
+ deltaTone?: "negative" | "neutral" | "positive" | undefined;
1706
+ caption?: string | {
1707
+ path: string;
1708
+ } | undefined;
1709
+ }, {
1710
+ label: string | {
1711
+ path: string;
1712
+ };
1713
+ value: string | {
1714
+ path: string;
1715
+ };
1716
+ delta?: string | {
1717
+ path: string;
1718
+ } | undefined;
1719
+ deltaTone?: "negative" | "neutral" | "positive" | undefined;
1720
+ caption?: string | {
1721
+ path: string;
1722
+ } | undefined;
1723
+ }>;
1724
+ };
1725
+ Metric: {
1726
+ description: string;
1727
+ props: z.ZodObject<{
1728
+ label: z.ZodUnion<[z.ZodString, z.ZodObject<{
1729
+ path: z.ZodString;
1730
+ }, "strip", z.ZodTypeAny, {
1731
+ path: string;
1732
+ }, {
1733
+ path: string;
1734
+ }>]>;
1735
+ value: z.ZodUnion<[z.ZodString, z.ZodObject<{
1736
+ path: z.ZodString;
1737
+ }, "strip", z.ZodTypeAny, {
1738
+ path: string;
1739
+ }, {
1740
+ path: string;
1741
+ }>]>;
1742
+ trend: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
1743
+ path: z.ZodString;
1744
+ }, "strip", z.ZodTypeAny, {
1745
+ path: string;
1746
+ }, {
1747
+ path: string;
1748
+ }>]>>;
1749
+ }, "strip", z.ZodTypeAny, {
1750
+ label: string | {
1751
+ path: string;
1752
+ };
1753
+ value: string | {
1754
+ path: string;
1755
+ };
1756
+ trend?: string | {
1757
+ path: string;
1758
+ } | undefined;
1759
+ }, {
1760
+ label: string | {
1761
+ path: string;
1762
+ };
1763
+ value: string | {
1764
+ path: string;
1765
+ };
1766
+ trend?: string | {
1767
+ path: string;
1768
+ } | undefined;
1769
+ }>;
1770
+ };
1771
+ BarChart: {
1772
+ description: string;
1773
+ props: z.ZodObject<{
1774
+ data: z.ZodUnion<[z.ZodArray<z.ZodObject<{
1775
+ label: z.ZodString;
1776
+ value: z.ZodNumber;
1777
+ }, "strip", z.ZodTypeAny, {
1778
+ label: string;
1779
+ value: number;
1780
+ }, {
1781
+ label: string;
1782
+ value: number;
1783
+ }>, "many">, z.ZodObject<{
1784
+ path: z.ZodString;
1785
+ }, "strip", z.ZodTypeAny, {
1786
+ path: string;
1787
+ }, {
1788
+ path: string;
1789
+ }>]>;
1790
+ height: z.ZodOptional<z.ZodNumber>;
1791
+ }, "strip", z.ZodTypeAny, {
1792
+ data: {
1793
+ label: string;
1794
+ value: number;
1795
+ }[] | {
1796
+ path: string;
1797
+ };
1798
+ height?: number | undefined;
1799
+ }, {
1800
+ data: {
1801
+ label: string;
1802
+ value: number;
1803
+ }[] | {
1804
+ path: string;
1805
+ };
1806
+ height?: number | undefined;
1807
+ }>;
1808
+ };
1809
+ HorizontalBarChart: {
1810
+ description: string;
1811
+ props: z.ZodObject<{
1812
+ data: z.ZodUnion<[z.ZodArray<z.ZodObject<{
1813
+ label: z.ZodString;
1814
+ value: z.ZodNumber;
1815
+ }, "strip", z.ZodTypeAny, {
1816
+ label: string;
1817
+ value: number;
1818
+ }, {
1819
+ label: string;
1820
+ value: number;
1821
+ }>, "many">, z.ZodObject<{
1822
+ path: z.ZodString;
1823
+ }, "strip", z.ZodTypeAny, {
1824
+ path: string;
1825
+ }, {
1826
+ path: string;
1827
+ }>]>;
1828
+ height: z.ZodOptional<z.ZodNumber>;
1829
+ }, "strip", z.ZodTypeAny, {
1830
+ data: {
1831
+ label: string;
1832
+ value: number;
1833
+ }[] | {
1834
+ path: string;
1835
+ };
1836
+ height?: number | undefined;
1837
+ }, {
1838
+ data: {
1839
+ label: string;
1840
+ value: number;
1841
+ }[] | {
1842
+ path: string;
1843
+ };
1844
+ height?: number | undefined;
1845
+ }>;
1846
+ };
1847
+ LineChart: {
1848
+ description: string;
1849
+ props: z.ZodObject<{
1850
+ data: z.ZodUnion<[z.ZodArray<z.ZodObject<{
1851
+ label: z.ZodString;
1852
+ value: z.ZodNumber;
1853
+ }, "strip", z.ZodTypeAny, {
1854
+ label: string;
1855
+ value: number;
1856
+ }, {
1857
+ label: string;
1858
+ value: number;
1859
+ }>, "many">, z.ZodObject<{
1860
+ path: z.ZodString;
1861
+ }, "strip", z.ZodTypeAny, {
1862
+ path: string;
1863
+ }, {
1864
+ path: string;
1865
+ }>]>;
1866
+ height: z.ZodOptional<z.ZodNumber>;
1867
+ }, "strip", z.ZodTypeAny, {
1868
+ data: {
1869
+ label: string;
1870
+ value: number;
1871
+ }[] | {
1872
+ path: string;
1873
+ };
1874
+ height?: number | undefined;
1875
+ }, {
1876
+ data: {
1877
+ label: string;
1878
+ value: number;
1879
+ }[] | {
1880
+ path: string;
1881
+ };
1882
+ height?: number | undefined;
1883
+ }>;
1884
+ };
1885
+ DonutChart: {
1886
+ description: string;
1887
+ props: z.ZodObject<{
1888
+ data: z.ZodUnion<[z.ZodArray<z.ZodObject<{
1889
+ label: z.ZodString;
1890
+ value: z.ZodNumber;
1891
+ }, "strip", z.ZodTypeAny, {
1892
+ label: string;
1893
+ value: number;
1894
+ }, {
1895
+ label: string;
1896
+ value: number;
1897
+ }>, "many">, z.ZodObject<{
1898
+ path: z.ZodString;
1899
+ }, "strip", z.ZodTypeAny, {
1900
+ path: string;
1901
+ }, {
1902
+ path: string;
1903
+ }>]>;
1904
+ height: z.ZodOptional<z.ZodNumber>;
1905
+ }, "strip", z.ZodTypeAny, {
1906
+ data: {
1907
+ label: string;
1908
+ value: number;
1909
+ }[] | {
1910
+ path: string;
1911
+ };
1912
+ height?: number | undefined;
1913
+ }, {
1914
+ data: {
1915
+ label: string;
1916
+ value: number;
1917
+ }[] | {
1918
+ path: string;
1919
+ };
1920
+ height?: number | undefined;
1921
+ }>;
1922
+ };
1923
+ PieChart: {
1924
+ description: string;
1925
+ props: z.ZodObject<{
1926
+ data: z.ZodUnion<[z.ZodArray<z.ZodObject<{
1927
+ label: z.ZodString;
1928
+ value: z.ZodNumber;
1929
+ }, "strip", z.ZodTypeAny, {
1930
+ label: string;
1931
+ value: number;
1932
+ }, {
1933
+ label: string;
1934
+ value: number;
1935
+ }>, "many">, z.ZodObject<{
1936
+ path: z.ZodString;
1937
+ }, "strip", z.ZodTypeAny, {
1938
+ path: string;
1939
+ }, {
1940
+ path: string;
1941
+ }>]>;
1942
+ height: z.ZodOptional<z.ZodNumber>;
1943
+ }, "strip", z.ZodTypeAny, {
1944
+ data: {
1945
+ label: string;
1946
+ value: number;
1947
+ }[] | {
1948
+ path: string;
1949
+ };
1950
+ height?: number | undefined;
1951
+ }, {
1952
+ data: {
1953
+ label: string;
1954
+ value: number;
1955
+ }[] | {
1956
+ path: string;
1957
+ };
1958
+ height?: number | undefined;
1959
+ }>;
1960
+ };
1961
+ AreaChart: {
1962
+ description: string;
1963
+ props: z.ZodObject<{
1964
+ data: z.ZodUnion<[z.ZodArray<z.ZodObject<{
1965
+ label: z.ZodString;
1966
+ value: z.ZodNumber;
1967
+ }, "strip", z.ZodTypeAny, {
1968
+ label: string;
1969
+ value: number;
1970
+ }, {
1971
+ label: string;
1972
+ value: number;
1973
+ }>, "many">, z.ZodObject<{
1974
+ path: z.ZodString;
1975
+ }, "strip", z.ZodTypeAny, {
1976
+ path: string;
1977
+ }, {
1978
+ path: string;
1979
+ }>]>;
1980
+ height: z.ZodOptional<z.ZodNumber>;
1981
+ }, "strip", z.ZodTypeAny, {
1982
+ data: {
1983
+ label: string;
1984
+ value: number;
1985
+ }[] | {
1986
+ path: string;
1987
+ };
1988
+ height?: number | undefined;
1989
+ }, {
1990
+ data: {
1991
+ label: string;
1992
+ value: number;
1993
+ }[] | {
1994
+ path: string;
1995
+ };
1996
+ height?: number | undefined;
1997
+ }>;
1998
+ };
1999
+ RadarChart: {
2000
+ description: string;
2001
+ props: z.ZodObject<{
2002
+ data: z.ZodUnion<[z.ZodArray<z.ZodObject<{
2003
+ label: z.ZodString;
2004
+ value: z.ZodNumber;
2005
+ }, "strip", z.ZodTypeAny, {
2006
+ label: string;
2007
+ value: number;
2008
+ }, {
2009
+ label: string;
2010
+ value: number;
2011
+ }>, "many">, z.ZodObject<{
2012
+ path: z.ZodString;
2013
+ }, "strip", z.ZodTypeAny, {
2014
+ path: string;
2015
+ }, {
2016
+ path: string;
2017
+ }>]>;
2018
+ height: z.ZodOptional<z.ZodNumber>;
2019
+ }, "strip", z.ZodTypeAny, {
2020
+ data: {
2021
+ label: string;
2022
+ value: number;
2023
+ }[] | {
2024
+ path: string;
2025
+ };
2026
+ height?: number | undefined;
2027
+ }, {
2028
+ data: {
2029
+ label: string;
2030
+ value: number;
2031
+ }[] | {
2032
+ path: string;
2033
+ };
2034
+ height?: number | undefined;
2035
+ }>;
2036
+ };
2037
+ RadialChart: {
2038
+ description: string;
2039
+ props: z.ZodObject<{
2040
+ data: z.ZodUnion<[z.ZodArray<z.ZodObject<{
2041
+ label: z.ZodString;
2042
+ value: z.ZodNumber;
2043
+ }, "strip", z.ZodTypeAny, {
2044
+ label: string;
2045
+ value: number;
2046
+ }, {
2047
+ label: string;
2048
+ value: number;
2049
+ }>, "many">, z.ZodObject<{
2050
+ path: z.ZodString;
2051
+ }, "strip", z.ZodTypeAny, {
2052
+ path: string;
2053
+ }, {
2054
+ path: string;
2055
+ }>]>;
2056
+ height: z.ZodOptional<z.ZodNumber>;
2057
+ }, "strip", z.ZodTypeAny, {
2058
+ data: {
2059
+ label: string;
2060
+ value: number;
2061
+ }[] | {
2062
+ path: string;
2063
+ };
2064
+ height?: number | undefined;
2065
+ }, {
2066
+ data: {
2067
+ label: string;
2068
+ value: number;
2069
+ }[] | {
2070
+ path: string;
2071
+ };
2072
+ height?: number | undefined;
2073
+ }>;
2074
+ };
2075
+ WaterfallChart: {
2076
+ description: string;
2077
+ props: z.ZodObject<{
2078
+ data: z.ZodUnion<[z.ZodArray<z.ZodObject<{
2079
+ label: z.ZodString;
2080
+ value: z.ZodNumber;
2081
+ }, "strip", z.ZodTypeAny, {
2082
+ label: string;
2083
+ value: number;
2084
+ }, {
2085
+ label: string;
2086
+ value: number;
2087
+ }>, "many">, z.ZodObject<{
2088
+ path: z.ZodString;
2089
+ }, "strip", z.ZodTypeAny, {
2090
+ path: string;
2091
+ }, {
2092
+ path: string;
2093
+ }>]>;
2094
+ height: z.ZodOptional<z.ZodNumber>;
2095
+ }, "strip", z.ZodTypeAny, {
2096
+ data: {
2097
+ label: string;
2098
+ value: number;
2099
+ }[] | {
2100
+ path: string;
2101
+ };
2102
+ height?: number | undefined;
2103
+ }, {
2104
+ data: {
2105
+ label: string;
2106
+ value: number;
2107
+ }[] | {
2108
+ path: string;
2109
+ };
2110
+ height?: number | undefined;
2111
+ }>;
2112
+ };
2113
+ RiskGauge: {
2114
+ description: string;
2115
+ props: z.ZodObject<{
2116
+ label: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
2117
+ path: z.ZodString;
2118
+ }, "strip", z.ZodTypeAny, {
2119
+ path: string;
2120
+ }, {
2121
+ path: string;
2122
+ }>]>>;
2123
+ value: z.ZodNumber;
2124
+ riskLevel: z.ZodOptional<z.ZodEnum<["low", "medium", "high"]>>;
2125
+ description: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
2126
+ path: z.ZodString;
2127
+ }, "strip", z.ZodTypeAny, {
2128
+ path: string;
2129
+ }, {
2130
+ path: string;
2131
+ }>]>>;
2132
+ min: z.ZodOptional<z.ZodNumber>;
2133
+ max: z.ZodOptional<z.ZodNumber>;
2134
+ }, "strip", z.ZodTypeAny, {
2135
+ label?: string | {
2136
+ path: string;
2137
+ } | undefined;
2138
+ value: number;
2139
+ riskLevel?: "high" | "low" | "medium" | undefined;
2140
+ description?: string | {
2141
+ path: string;
2142
+ } | undefined;
2143
+ min?: number | undefined;
2144
+ max?: number | undefined;
2145
+ }, {
2146
+ label?: string | {
2147
+ path: string;
2148
+ } | undefined;
2149
+ value: number;
2150
+ riskLevel?: "high" | "low" | "medium" | undefined;
2151
+ description?: string | {
2152
+ path: string;
2153
+ } | undefined;
2154
+ min?: number | undefined;
2155
+ max?: number | undefined;
2156
+ }>;
2157
+ };
2158
+ ScatterChart: {
2159
+ description: string;
2160
+ props: z.ZodObject<{
2161
+ data: z.ZodUnion<[z.ZodArray<z.ZodObject<{
2162
+ x: z.ZodNumber;
2163
+ y: z.ZodNumber;
2164
+ label: z.ZodOptional<z.ZodString>;
2165
+ }, "strip", z.ZodTypeAny, {
2166
+ x: number;
2167
+ y: number;
2168
+ label?: string | undefined;
2169
+ }, {
2170
+ x: number;
2171
+ y: number;
2172
+ label?: string | undefined;
2173
+ }>, "many">, z.ZodObject<{
2174
+ path: z.ZodString;
2175
+ }, "strip", z.ZodTypeAny, {
2176
+ path: string;
2177
+ }, {
2178
+ path: string;
2179
+ }>]>;
2180
+ xLabel: z.ZodOptional<z.ZodString>;
2181
+ yLabel: z.ZodOptional<z.ZodString>;
2182
+ height: z.ZodOptional<z.ZodNumber>;
2183
+ }, "strip", z.ZodTypeAny, {
2184
+ data: {
2185
+ x: number;
2186
+ y: number;
2187
+ label?: string | undefined;
2188
+ }[] | {
2189
+ path: string;
2190
+ };
2191
+ xLabel?: string | undefined;
2192
+ yLabel?: string | undefined;
2193
+ height?: number | undefined;
2194
+ }, {
2195
+ data: {
2196
+ x: number;
2197
+ y: number;
2198
+ label?: string | undefined;
2199
+ }[] | {
2200
+ path: string;
2201
+ };
2202
+ xLabel?: string | undefined;
2203
+ yLabel?: string | undefined;
2204
+ height?: number | undefined;
2205
+ }>;
2206
+ };
2207
+ DataTable: {
2208
+ description: string;
2209
+ props: z.ZodObject<{
2210
+ columns: z.ZodArray<z.ZodObject<{
2211
+ key: z.ZodString;
2212
+ label: z.ZodString;
2213
+ align: z.ZodOptional<z.ZodEnum<["left", "right"]>>;
2214
+ }, "strip", z.ZodTypeAny, {
2215
+ key: string;
2216
+ label: string;
2217
+ align?: "left" | "right" | undefined;
2218
+ }, {
2219
+ key: string;
2220
+ label: string;
2221
+ align?: "left" | "right" | undefined;
2222
+ }>, "many">;
2223
+ rows: z.ZodUnion<[z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>, "many">, z.ZodObject<{
2224
+ path: z.ZodString;
2225
+ }, "strip", z.ZodTypeAny, {
2226
+ path: string;
2227
+ }, {
2228
+ path: string;
2229
+ }>]>;
2230
+ }, "strip", z.ZodTypeAny, {
2231
+ columns: {
2232
+ key: string;
2233
+ label: string;
2234
+ align?: "left" | "right" | undefined;
2235
+ }[];
2236
+ rows: Record<string, string | number>[] | {
2237
+ path: string;
2238
+ };
2239
+ }, {
2240
+ columns: {
2241
+ key: string;
2242
+ label: string;
2243
+ align?: "left" | "right" | undefined;
2244
+ }[];
2245
+ rows: Record<string, string | number>[] | {
2246
+ path: string;
2247
+ };
2248
+ }>;
2249
+ };
2250
+ Button: {
2251
+ description: string;
2252
+ props: z.ZodObject<{
2253
+ child: z.ZodString;
2254
+ variant: z.ZodOptional<z.ZodEnum<["default", "primary", "borderless"]>>;
2255
+ action: z.ZodUnion<[z.ZodObject<{
2256
+ event: z.ZodObject<{
2257
+ name: z.ZodString;
2258
+ context: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2259
+ }, "strip", z.ZodTypeAny, {
2260
+ name: string;
2261
+ context?: Record<string, unknown> | undefined;
2262
+ }, {
2263
+ name: string;
2264
+ context?: Record<string, unknown> | undefined;
2265
+ }>;
2266
+ }, "strip", z.ZodTypeAny, {
2267
+ event: {
2268
+ name: string;
2269
+ context?: Record<string, unknown> | undefined;
2270
+ };
2271
+ }, {
2272
+ event: {
2273
+ name: string;
2274
+ context?: Record<string, unknown> | undefined;
2275
+ };
2276
+ }>, z.ZodObject<{
2277
+ functionCall: z.ZodObject<{
2278
+ call: z.ZodString;
2279
+ args: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2280
+ returnType: z.ZodOptional<z.ZodString>;
2281
+ }, "strip", z.ZodTypeAny, {
2282
+ call: string;
2283
+ args?: Record<string, unknown> | undefined;
2284
+ returnType?: string | undefined;
2285
+ }, {
2286
+ call: string;
2287
+ args?: Record<string, unknown> | undefined;
2288
+ returnType?: string | undefined;
2289
+ }>;
2290
+ }, "strip", z.ZodTypeAny, {
2291
+ functionCall: {
2292
+ call: string;
2293
+ args?: Record<string, unknown> | undefined;
2294
+ returnType?: string | undefined;
2295
+ };
2296
+ }, {
2297
+ functionCall: {
2298
+ call: string;
2299
+ args?: Record<string, unknown> | undefined;
2300
+ returnType?: string | undefined;
2301
+ };
2302
+ }>]>;
2303
+ checks: z.ZodOptional<z.ZodArray<z.ZodObject<{
2304
+ condition: z.ZodAny;
2305
+ message: z.ZodString;
2306
+ }, "strip", z.ZodTypeAny, {
2307
+ condition?: any;
2308
+ message: string;
2309
+ }, {
2310
+ condition?: any;
2311
+ message: string;
2312
+ }>, "many">>;
2313
+ }, "strip", z.ZodTypeAny, {
2314
+ child: string;
2315
+ variant?: "borderless" | "default" | "primary" | undefined;
2316
+ action: {
2317
+ event: {
2318
+ name: string;
2319
+ context?: Record<string, unknown> | undefined;
2320
+ };
2321
+ } | {
2322
+ functionCall: {
2323
+ call: string;
2324
+ args?: Record<string, unknown> | undefined;
2325
+ returnType?: string | undefined;
2326
+ };
2327
+ };
2328
+ checks?: {
2329
+ condition?: any;
2330
+ message: string;
2331
+ }[] | undefined;
2332
+ }, {
2333
+ child: string;
2334
+ variant?: "borderless" | "default" | "primary" | undefined;
2335
+ action: {
2336
+ event: {
2337
+ name: string;
2338
+ context?: Record<string, unknown> | undefined;
2339
+ };
2340
+ } | {
2341
+ functionCall: {
2342
+ call: string;
2343
+ args?: Record<string, unknown> | undefined;
2344
+ returnType?: string | undefined;
2345
+ };
2346
+ };
2347
+ checks?: {
2348
+ condition?: any;
2349
+ message: string;
2350
+ }[] | undefined;
2351
+ }>;
2352
+ };
2353
+ ChoiceChips: {
2354
+ description: string;
2355
+ props: z.ZodObject<{
2356
+ label: z.ZodString;
2357
+ options: z.ZodUnion<[z.ZodArray<z.ZodObject<{
2358
+ label: z.ZodString;
2359
+ value: z.ZodString;
2360
+ }, "strip", z.ZodTypeAny, {
2361
+ label: string;
2362
+ value: string;
2363
+ }, {
2364
+ label: string;
2365
+ value: string;
2366
+ }>, "many">, z.ZodObject<{
2367
+ path: z.ZodString;
2368
+ }, "strip", z.ZodTypeAny, {
2369
+ path: string;
2370
+ }, {
2371
+ path: string;
2372
+ }>]>;
2373
+ value: z.ZodObject<{
2374
+ path: z.ZodString;
2375
+ }, "strip", z.ZodTypeAny, {
2376
+ path: string;
2377
+ }, {
2378
+ path: string;
2379
+ }>;
2380
+ multi: z.ZodOptional<z.ZodBoolean>;
2381
+ }, "strip", z.ZodTypeAny, {
2382
+ label: string;
2383
+ options: {
2384
+ label: string;
2385
+ value: string;
2386
+ }[] | {
2387
+ path: string;
2388
+ };
2389
+ value: {
2390
+ path: string;
2391
+ };
2392
+ multi?: boolean | undefined;
2393
+ }, {
2394
+ label: string;
2395
+ options: {
2396
+ label: string;
2397
+ value: string;
2398
+ }[] | {
2399
+ path: string;
2400
+ };
2401
+ value: {
2402
+ path: string;
2403
+ };
2404
+ multi?: boolean | undefined;
2405
+ }>;
2406
+ };
2407
+ ReportGenerationCard: {
2408
+ description: string;
2409
+ props: z.ZodObject<{
2410
+ report_id: z.ZodOptional<z.ZodString>;
2411
+ report_name: z.ZodOptional<z.ZodString>;
2412
+ blob_url: z.ZodOptional<z.ZodString>;
2413
+ generated_at: z.ZodOptional<z.ZodString>;
2414
+ status: z.ZodOptional<z.ZodString>;
2415
+ message: z.ZodOptional<z.ZodString>;
2416
+ }, "strip", z.ZodTypeAny, {
2417
+ report_id?: string | undefined;
2418
+ report_name?: string | undefined;
2419
+ blob_url?: string | undefined;
2420
+ generated_at?: string | undefined;
2421
+ status?: string | undefined;
2422
+ message?: string | undefined;
2423
+ }, {
2424
+ report_id?: string | undefined;
2425
+ report_name?: string | undefined;
2426
+ blob_url?: string | undefined;
2427
+ generated_at?: string | undefined;
2428
+ status?: string | undefined;
2429
+ message?: string | undefined;
2430
+ }>;
2431
+ };
2432
+ };
2433
+ //#endregion
2434
+ //#region src/components/a2ui/index.d.ts
2435
+ declare const CATALOG_ID = "https://omnichatkit.local/catalog/v1";
2436
+ declare const catalog: {
2437
+ AreaChart: ({ props }: RendererProps<{
2438
+ data: {
2439
+ label: string;
2440
+ value: number;
2441
+ }[];
2442
+ height?: number;
2443
+ }>) => import("react").JSX.Element;
2444
+ RadarChart: ({ props }: RendererProps<{
2445
+ data: {
2446
+ label: string;
2447
+ value: number;
2448
+ }[];
2449
+ height?: number;
2450
+ }>) => import("react").JSX.Element;
2451
+ RadialChart: ({ props }: RendererProps<{
2452
+ data: {
2453
+ label: string;
2454
+ value: number;
2455
+ }[];
2456
+ height?: number;
2457
+ }>) => import("react").JSX.Element;
2458
+ Stack: ({ props, children }: RendererProps<{
2459
+ children: string[] | {
2460
+ componentId: string;
2461
+ path: string;
2462
+ };
2463
+ gap?: "lg" | "md" | "sm" | "xl" | "xs";
2464
+ align?: "center" | "end" | "start" | "stretch";
2465
+ }>) => import("react").JSX.Element;
2466
+ Row: ({ props, children }: RendererProps<{
2467
+ children: string[];
2468
+ gap?: "lg" | "md" | "sm" | "xl" | "xs";
2469
+ justify?: "center" | "end" | "spaceBetween" | "start";
2470
+ align?: "center" | "end" | "start" | "stretch";
2471
+ }>) => import("react").JSX.Element;
2472
+ Grid: ({ props, children }: RendererProps<{
2473
+ children: string[];
2474
+ columns?: number;
2475
+ gap?: "lg" | "md" | "sm" | "xl" | "xs";
2476
+ }>) => import("react").JSX.Element;
2477
+ Section: ({ props, children }: RendererProps<{
2478
+ title: string;
2479
+ eyebrow?: string;
2480
+ children?: string[];
2481
+ }>) => import("react").JSX.Element;
2482
+ Card: ({ props, children }: RendererProps<{
2483
+ child: string;
2484
+ tone?: "default" | "lilac" | "mint" | "warning";
2485
+ }>) => import("react").JSX.Element;
2486
+ Divider: () => import("react").JSX.Element;
2487
+ Heading: ({ props }: RendererProps<{
2488
+ text: string;
2489
+ level?: "1" | "2" | "3";
2490
+ }>) => import("react").JSX.Element;
2491
+ Text: ({ props }: RendererProps<{
2492
+ text: string;
2493
+ variant?: "h1" | "h2" | "h3" | "h4" | "h5" | "caption" | "body";
2494
+ }>) => import("react").JSX.Element;
2495
+ Overline: ({ props }: RendererProps<{
2496
+ text: string;
2497
+ }>) => import("react").JSX.Element;
2498
+ Badge: ({ props }: RendererProps<{
2499
+ label: string;
2500
+ tone?: "neutral" | "positive" | "warning" | "danger" | "info";
2501
+ }>) => import("react").JSX.Element;
2502
+ Callout: ({ props }: RendererProps<{
2503
+ body: string;
2504
+ title?: string;
2505
+ tone?: "info" | "positive" | "warning" | "neutral";
2506
+ }>) => import("react").JSX.Element;
2507
+ BulletList: ({ props }: RendererProps<{
2508
+ items: string[];
2509
+ ordered?: boolean;
2510
+ }>) => import("react").JSX.Element | null;
2511
+ StatCard: ({ props }: RendererProps<{
2512
+ label: string;
2513
+ value: string;
2514
+ delta?: string;
2515
+ deltaTone?: "positive" | "negative" | "neutral";
2516
+ caption?: string;
2517
+ }>) => import("react").JSX.Element;
2518
+ BarChart: ({ props }: RendererProps<{
2519
+ data: {
2520
+ label: string;
2521
+ value: number;
2522
+ }[];
2523
+ height?: number;
2524
+ }>) => import("react").JSX.Element;
2525
+ HorizontalBarChart: ({ props }: RendererProps<{
2526
+ data: {
2527
+ label: string;
2528
+ value: number;
2529
+ }[];
2530
+ height?: number;
2531
+ }>) => import("react").JSX.Element;
2532
+ LineChart: ({ props }: RendererProps<{
2533
+ data: {
2534
+ label: string;
2535
+ value: number;
2536
+ }[];
2537
+ height?: number;
2538
+ }>) => import("react").JSX.Element;
2539
+ DonutChart: ({ props }: RendererProps<{
2540
+ data: {
2541
+ label: string;
2542
+ value: number;
2543
+ }[];
2544
+ height?: number;
2545
+ }>) => import("react").JSX.Element;
2546
+ ScatterChart: ({ props }: RendererProps<{
2547
+ data: {
2548
+ x: number;
2549
+ y: number;
2550
+ label?: string;
2551
+ }[];
2552
+ xLabel?: string;
2553
+ yLabel?: string;
2554
+ height?: number;
2555
+ }>) => import("react").JSX.Element;
2556
+ DataTable: ({ props }: RendererProps<{
2557
+ columns: {
2558
+ key: string;
2559
+ label: string;
2560
+ align?: "left" | "right";
2561
+ }[];
2562
+ rows: Record<string, string | number>[];
2563
+ }>) => import("react").JSX.Element;
2564
+ Button: ({ props, dispatch, children }: RendererProps<{
2565
+ child: string;
2566
+ variant?: "default" | "primary" | "borderless";
2567
+ action: {
2568
+ event: {
2569
+ name: string;
2570
+ context?: Record<string, unknown>;
2571
+ };
2572
+ } | {
2573
+ functionCall: {
2574
+ call: string;
2575
+ args?: Record<string, unknown>;
2576
+ };
2577
+ };
2578
+ checks?: {
2579
+ condition: boolean;
2580
+ message: string;
2581
+ }[];
2582
+ }>) => import("react").JSX.Element;
2583
+ ChoiceChips: ({ props, dispatch }: RendererProps<{
2584
+ label: string;
2585
+ options: {
2586
+ label: string;
2587
+ value: string;
2588
+ }[];
2589
+ value: string | string[];
2590
+ multi?: boolean;
2591
+ }>) => import("react").JSX.Element;
2592
+ InfoRow: ({ props }: RendererProps<{
2593
+ label: string;
2594
+ value: string;
2595
+ }>) => import("react").JSX.Element;
2596
+ StatusBadge: ({ props }: RendererProps<{
2597
+ label: string;
2598
+ status?: "positive" | "negative" | "warning" | "neutral";
2599
+ }>) => import("react").JSX.Element;
2600
+ Metric: ({ props }: RendererProps<{
2601
+ label: string;
2602
+ value: string;
2603
+ trend?: string;
2604
+ }>) => import("react").JSX.Element;
2605
+ PieChart: ({ props, children }: RendererProps<{
2606
+ data: {
2607
+ label: string;
2608
+ value: number;
2609
+ }[];
2610
+ height?: number;
2611
+ }>) => import("react").JSX.Element;
2612
+ WaterfallChart: ({ props }: RendererProps<{
2613
+ data: {
2614
+ label: string;
2615
+ value: number;
2616
+ }[];
2617
+ height?: number;
2618
+ }>) => import("react").JSX.Element;
2619
+ RiskGauge: ({ props }: RendererProps<{
2620
+ label?: string;
2621
+ value: number;
2622
+ riskLevel?: "low" | "medium" | "high";
2623
+ description?: string;
2624
+ min?: number;
2625
+ max?: number;
2626
+ }>) => import("react").JSX.Element;
2627
+ ReportGenerationCard: ({ props }: RendererProps<{
2628
+ report_id?: string;
2629
+ report_name?: string;
2630
+ blob_url?: string;
2631
+ generated_at?: string;
2632
+ status?: string;
2633
+ message?: string;
2634
+ }>) => import("react").JSX.Element;
2635
+ Image: ({ props }: RendererProps<{
2636
+ url: string;
2637
+ description?: string;
2638
+ fit?: string;
2639
+ variant?: string;
2640
+ }>) => import("react").JSX.Element;
2641
+ Icon: ({ props }: RendererProps<{
2642
+ name: string | {
2643
+ svgPath: string;
2644
+ };
2645
+ }>) => import("react").JSX.Element;
2646
+ Video: ({ props }: RendererProps<{
2647
+ url: string;
2648
+ }>) => import("react").JSX.Element;
2649
+ AudioPlayer: ({ props }: RendererProps<{
2650
+ url: string;
2651
+ description?: string;
2652
+ }>) => import("react").JSX.Element;
2653
+ Column: ({ props, children }: RendererProps<{
2654
+ children: string[] | {
2655
+ componentId: string;
2656
+ path: string;
2657
+ };
2658
+ gap?: "lg" | "md" | "sm" | "xl" | "xs";
2659
+ justify?: "center" | "end" | "spaceBetween" | "start";
2660
+ align?: "center" | "end" | "start" | "stretch";
2661
+ weight?: number[];
2662
+ }>) => import("react").JSX.Element;
2663
+ List: ({ props, children }: RendererProps<{
2664
+ children?: string[] | {
2665
+ componentId: string;
2666
+ path: string;
2667
+ };
2668
+ items?: string[];
2669
+ direction?: 'vertical' | 'horizontal';
2670
+ align?: "center" | "end" | "start" | "stretch";
2671
+ }>) => import("react").JSX.Element;
2672
+ Tabs: ({ props, children }: RendererProps<{
2673
+ tabs: {
2674
+ title: string;
2675
+ child: string;
2676
+ }[];
2677
+ }>) => import("react").JSX.Element | null;
2678
+ Modal: ({ props, children }: RendererProps<{
2679
+ trigger: string;
2680
+ content: string;
2681
+ }>) => import("react").JSX.Element;
2682
+ CheckBox: ({ props, dispatch }: RendererProps<{
2683
+ label?: string;
2684
+ value: boolean;
2685
+ }>) => import("react").JSX.Element;
2686
+ TextField: ({ props, dispatch }: RendererProps<{
2687
+ label?: string;
2688
+ value?: string;
2689
+ variant?: 'shortText' | 'longText' | 'number' | 'obscured';
2690
+ checks?: any;
2691
+ validationRegexp?: string;
2692
+ }>) => import("react").JSX.Element;
2693
+ ChoicePicker: ({ props, dispatch }: RendererProps<{
2694
+ options: {
2695
+ label: string;
2696
+ value: string;
2697
+ }[];
2698
+ value: string | string[];
2699
+ variant?: "mutuallyExclusive" | "multipleSelection";
2700
+ }>) => import("react").JSX.Element;
2701
+ Slider: ({ props, dispatch }: RendererProps<{
2702
+ value: number;
2703
+ min?: number;
2704
+ max?: number;
2705
+ label?: string;
2706
+ }>) => import("react").JSX.Element;
2707
+ DateTimeInput: ({ props, dispatch }: RendererProps<{
2708
+ value?: string;
2709
+ label?: string;
2710
+ enableDate?: boolean;
2711
+ enableTime?: boolean;
2712
+ min?: string;
2713
+ max?: string;
2714
+ }>) => import("react").JSX.Element;
2715
+ };
2716
+ declare const catalogSchema: {
2717
+ Stack: {
2718
+ description: string;
2719
+ props: import("zod").ZodObject<{
2720
+ children: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodObject<{
2721
+ componentId: import("zod").ZodString;
2722
+ path: import("zod").ZodString;
2723
+ }, "strip", import("zod").ZodTypeAny, {
2724
+ componentId: string;
2725
+ path: string;
2726
+ }, {
2727
+ componentId: string;
2728
+ path: string;
2729
+ }>]>;
2730
+ gap: import("zod").ZodOptional<import("zod").ZodEnum<["xs", "sm", "md", "lg", "xl"]>>;
2731
+ align: import("zod").ZodOptional<import("zod").ZodEnum<["start", "center", "end", "stretch"]>>;
2732
+ }, "strip", import("zod").ZodTypeAny, {
2733
+ children: string[] | {
2734
+ componentId: string;
2735
+ path: string;
2736
+ };
2737
+ gap?: "lg" | "md" | "sm" | "xl" | "xs" | undefined;
2738
+ align?: "center" | "end" | "start" | "stretch" | undefined;
2739
+ }, {
2740
+ children: string[] | {
2741
+ componentId: string;
2742
+ path: string;
2743
+ };
2744
+ gap?: "lg" | "md" | "sm" | "xl" | "xs" | undefined;
2745
+ align?: "center" | "end" | "start" | "stretch" | undefined;
2746
+ }>;
2747
+ };
2748
+ Row: {
2749
+ description: string;
2750
+ props: import("zod").ZodObject<{
2751
+ children: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodObject<{
2752
+ componentId: import("zod").ZodString;
2753
+ path: import("zod").ZodString;
2754
+ }, "strip", import("zod").ZodTypeAny, {
2755
+ componentId: string;
2756
+ path: string;
2757
+ }, {
2758
+ componentId: string;
2759
+ path: string;
2760
+ }>]>;
2761
+ gap: import("zod").ZodOptional<import("zod").ZodEnum<["xs", "sm", "md", "lg"]>>;
2762
+ justify: import("zod").ZodOptional<import("zod").ZodEnum<["start", "center", "end", "spaceBetween"]>>;
2763
+ align: import("zod").ZodOptional<import("zod").ZodEnum<["start", "center", "end"]>>;
2764
+ }, "strip", import("zod").ZodTypeAny, {
2765
+ children: string[] | {
2766
+ componentId: string;
2767
+ path: string;
2768
+ };
2769
+ gap?: "lg" | "md" | "sm" | "xs" | undefined;
2770
+ justify?: "center" | "end" | "spaceBetween" | "start" | undefined;
2771
+ align?: "center" | "end" | "start" | undefined;
2772
+ }, {
2773
+ children: string[] | {
2774
+ componentId: string;
2775
+ path: string;
2776
+ };
2777
+ gap?: "lg" | "md" | "sm" | "xs" | undefined;
2778
+ justify?: "center" | "end" | "spaceBetween" | "start" | undefined;
2779
+ align?: "center" | "end" | "start" | undefined;
2780
+ }>;
2781
+ };
2782
+ Grid: {
2783
+ description: string;
2784
+ props: import("zod").ZodObject<{
2785
+ children: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodObject<{
2786
+ componentId: import("zod").ZodString;
2787
+ path: import("zod").ZodString;
2788
+ }, "strip", import("zod").ZodTypeAny, {
2789
+ componentId: string;
2790
+ path: string;
2791
+ }, {
2792
+ componentId: string;
2793
+ path: string;
2794
+ }>]>;
2795
+ columns: import("zod").ZodOptional<import("zod").ZodNumber>;
2796
+ gap: import("zod").ZodOptional<import("zod").ZodEnum<["xs", "sm", "md", "lg"]>>;
2797
+ }, "strip", import("zod").ZodTypeAny, {
2798
+ children: string[] | {
2799
+ componentId: string;
2800
+ path: string;
2801
+ };
2802
+ columns?: number | undefined;
2803
+ gap?: "lg" | "md" | "sm" | "xs" | undefined;
2804
+ }, {
2805
+ children: string[] | {
2806
+ componentId: string;
2807
+ path: string;
2808
+ };
2809
+ columns?: number | undefined;
2810
+ gap?: "lg" | "md" | "sm" | "xs" | undefined;
2811
+ }>;
2812
+ };
2813
+ Section: {
2814
+ description: string;
2815
+ props: import("zod").ZodObject<{
2816
+ title: import("zod").ZodString;
2817
+ eyebrow: import("zod").ZodOptional<import("zod").ZodString>;
2818
+ children: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodObject<{
2819
+ componentId: import("zod").ZodString;
2820
+ path: import("zod").ZodString;
2821
+ }, "strip", import("zod").ZodTypeAny, {
2822
+ componentId: string;
2823
+ path: string;
2824
+ }, {
2825
+ componentId: string;
2826
+ path: string;
2827
+ }>]>;
2828
+ }, "strip", import("zod").ZodTypeAny, {
2829
+ title: string;
2830
+ eyebrow?: string | undefined;
2831
+ children: string[] | {
2832
+ componentId: string;
2833
+ path: string;
2834
+ };
2835
+ }, {
2836
+ title: string;
2837
+ eyebrow?: string | undefined;
2838
+ children: string[] | {
2839
+ componentId: string;
2840
+ path: string;
2841
+ };
2842
+ }>;
2843
+ };
2844
+ Card: {
2845
+ description: string;
2846
+ props: import("zod").ZodObject<{
2847
+ child: import("zod").ZodString;
2848
+ tone: import("zod").ZodOptional<import("zod").ZodEnum<["default", "lilac", "mint", "warning"]>>;
2849
+ }, "strip", import("zod").ZodTypeAny, {
2850
+ child: string;
2851
+ tone?: "default" | "lilac" | "mint" | "warning" | undefined;
2852
+ }, {
2853
+ child: string;
2854
+ tone?: "default" | "lilac" | "mint" | "warning" | undefined;
2855
+ }>;
2856
+ };
2857
+ Divider: {
2858
+ description: string;
2859
+ props: import("zod").ZodObject<{}, "strip", import("zod").ZodTypeAny, {}, {}>;
2860
+ };
2861
+ InfoRow: {
2862
+ description: string;
2863
+ props: import("zod").ZodObject<{
2864
+ label: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
2865
+ path: import("zod").ZodString;
2866
+ }, "strip", import("zod").ZodTypeAny, {
2867
+ path: string;
2868
+ }, {
2869
+ path: string;
2870
+ }>]>;
2871
+ value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
2872
+ path: import("zod").ZodString;
2873
+ }, "strip", import("zod").ZodTypeAny, {
2874
+ path: string;
2875
+ }, {
2876
+ path: string;
2877
+ }>]>;
2878
+ }, "strip", import("zod").ZodTypeAny, {
2879
+ label: string | {
2880
+ path: string;
2881
+ };
2882
+ value: string | {
2883
+ path: string;
2884
+ };
2885
+ }, {
2886
+ label: string | {
2887
+ path: string;
2888
+ };
2889
+ value: string | {
2890
+ path: string;
2891
+ };
2892
+ }>;
2893
+ };
2894
+ Heading: {
2895
+ description: string;
2896
+ props: import("zod").ZodObject<{
2897
+ text: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
2898
+ path: import("zod").ZodString;
2899
+ }, "strip", import("zod").ZodTypeAny, {
2900
+ path: string;
2901
+ }, {
2902
+ path: string;
2903
+ }>]>;
2904
+ level: import("zod").ZodOptional<import("zod").ZodEnum<["1", "2", "3"]>>;
2905
+ }, "strip", import("zod").ZodTypeAny, {
2906
+ text: string | {
2907
+ path: string;
2908
+ };
2909
+ level?: "1" | "2" | "3" | undefined;
2910
+ }, {
2911
+ text: string | {
2912
+ path: string;
2913
+ };
2914
+ level?: "1" | "2" | "3" | undefined;
2915
+ }>;
2916
+ };
2917
+ Text: {
2918
+ description: string;
2919
+ props: import("zod").ZodObject<{
2920
+ text: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
2921
+ path: import("zod").ZodString;
2922
+ }, "strip", import("zod").ZodTypeAny, {
2923
+ path: string;
2924
+ }, {
2925
+ path: string;
2926
+ }>]>;
2927
+ variant: import("zod").ZodOptional<import("zod").ZodEnum<["h1", "h2", "h3", "h4", "h5", "caption", "body"]>>;
2928
+ }, "strip", import("zod").ZodTypeAny, {
2929
+ text: string | {
2930
+ path: string;
2931
+ };
2932
+ variant?: "body" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | undefined;
2933
+ }, {
2934
+ text: string | {
2935
+ path: string;
2936
+ };
2937
+ variant?: "body" | "caption" | "h1" | "h2" | "h3" | "h4" | "h5" | undefined;
2938
+ }>;
2939
+ };
2940
+ Image: {
2941
+ description: string;
2942
+ props: import("zod").ZodObject<{
2943
+ url: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
2944
+ path: import("zod").ZodString;
2945
+ }, "strip", import("zod").ZodTypeAny, {
2946
+ path: string;
2947
+ }, {
2948
+ path: string;
2949
+ }>]>;
2950
+ description: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
2951
+ path: import("zod").ZodString;
2952
+ }, "strip", import("zod").ZodTypeAny, {
2953
+ path: string;
2954
+ }, {
2955
+ path: string;
2956
+ }>]>>;
2957
+ fit: import("zod").ZodOptional<import("zod").ZodEnum<["cover", "contain", "fill", "none", "scaleDown"]>>;
2958
+ variant: import("zod").ZodOptional<import("zod").ZodString>;
2959
+ }, "strip", import("zod").ZodTypeAny, {
2960
+ url: string | {
2961
+ path: string;
2962
+ };
2963
+ description?: string | {
2964
+ path: string;
2965
+ } | undefined;
2966
+ fit?: "contain" | "cover" | "fill" | "none" | "scaleDown" | undefined;
2967
+ variant?: string | undefined;
2968
+ }, {
2969
+ url: string | {
2970
+ path: string;
2971
+ };
2972
+ description?: string | {
2973
+ path: string;
2974
+ } | undefined;
2975
+ fit?: "contain" | "cover" | "fill" | "none" | "scaleDown" | undefined;
2976
+ variant?: string | undefined;
2977
+ }>;
2978
+ };
2979
+ Icon: {
2980
+ description: string;
2981
+ props: import("zod").ZodObject<{
2982
+ name: import("zod").ZodUnion<[import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
2983
+ path: import("zod").ZodString;
2984
+ }, "strip", import("zod").ZodTypeAny, {
2985
+ path: string;
2986
+ }, {
2987
+ path: string;
2988
+ }>]>, import("zod").ZodObject<{
2989
+ svgPath: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
2990
+ path: import("zod").ZodString;
2991
+ }, "strip", import("zod").ZodTypeAny, {
2992
+ path: string;
2993
+ }, {
2994
+ path: string;
2995
+ }>]>;
2996
+ }, "strip", import("zod").ZodTypeAny, {
2997
+ svgPath: string | {
2998
+ path: string;
2999
+ };
3000
+ }, {
3001
+ svgPath: string | {
3002
+ path: string;
3003
+ };
3004
+ }>]>;
3005
+ }, "strip", import("zod").ZodTypeAny, {
3006
+ name: string | {
3007
+ path: string;
3008
+ } | {
3009
+ svgPath: string | {
3010
+ path: string;
3011
+ };
3012
+ };
3013
+ }, {
3014
+ name: string | {
3015
+ path: string;
3016
+ } | {
3017
+ svgPath: string | {
3018
+ path: string;
3019
+ };
3020
+ };
3021
+ }>;
3022
+ };
3023
+ Video: {
3024
+ description: string;
3025
+ props: import("zod").ZodObject<{
3026
+ url: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3027
+ path: import("zod").ZodString;
3028
+ }, "strip", import("zod").ZodTypeAny, {
3029
+ path: string;
3030
+ }, {
3031
+ path: string;
3032
+ }>]>;
3033
+ }, "strip", import("zod").ZodTypeAny, {
3034
+ url: string | {
3035
+ path: string;
3036
+ };
3037
+ }, {
3038
+ url: string | {
3039
+ path: string;
3040
+ };
3041
+ }>;
3042
+ };
3043
+ AudioPlayer: {
3044
+ description: string;
3045
+ props: import("zod").ZodObject<{
3046
+ url: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3047
+ path: import("zod").ZodString;
3048
+ }, "strip", import("zod").ZodTypeAny, {
3049
+ path: string;
3050
+ }, {
3051
+ path: string;
3052
+ }>]>;
3053
+ description: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3054
+ path: import("zod").ZodString;
3055
+ }, "strip", import("zod").ZodTypeAny, {
3056
+ path: string;
3057
+ }, {
3058
+ path: string;
3059
+ }>]>>;
3060
+ }, "strip", import("zod").ZodTypeAny, {
3061
+ url: string | {
3062
+ path: string;
3063
+ };
3064
+ description?: string | {
3065
+ path: string;
3066
+ } | undefined;
3067
+ }, {
3068
+ url: string | {
3069
+ path: string;
3070
+ };
3071
+ description?: string | {
3072
+ path: string;
3073
+ } | undefined;
3074
+ }>;
3075
+ };
3076
+ Column: {
3077
+ description: string;
3078
+ props: import("zod").ZodObject<{
3079
+ children: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodObject<{
3080
+ componentId: import("zod").ZodString;
3081
+ path: import("zod").ZodString;
3082
+ }, "strip", import("zod").ZodTypeAny, {
3083
+ componentId: string;
3084
+ path: string;
3085
+ }, {
3086
+ componentId: string;
3087
+ path: string;
3088
+ }>]>;
3089
+ gap: import("zod").ZodOptional<import("zod").ZodEnum<["xs", "sm", "md", "lg", "xl"]>>;
3090
+ justify: import("zod").ZodOptional<import("zod").ZodEnum<["start", "center", "end", "spaceBetween"]>>;
3091
+ align: import("zod").ZodOptional<import("zod").ZodEnum<["start", "center", "end", "stretch"]>>;
3092
+ weight: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodNumber, "many">, import("zod").ZodObject<{
3093
+ path: import("zod").ZodString;
3094
+ }, "strip", import("zod").ZodTypeAny, {
3095
+ path: string;
3096
+ }, {
3097
+ path: string;
3098
+ }>]>>;
3099
+ }, "strip", import("zod").ZodTypeAny, {
3100
+ children: string[] | {
3101
+ componentId: string;
3102
+ path: string;
3103
+ };
3104
+ gap?: "lg" | "md" | "sm" | "xl" | "xs" | undefined;
3105
+ justify?: "center" | "end" | "spaceBetween" | "start" | undefined;
3106
+ align?: "center" | "end" | "start" | "stretch" | undefined;
3107
+ weight?: number[] | {
3108
+ path: string;
3109
+ } | undefined;
3110
+ }, {
3111
+ children: string[] | {
3112
+ componentId: string;
3113
+ path: string;
3114
+ };
3115
+ gap?: "lg" | "md" | "sm" | "xl" | "xs" | undefined;
3116
+ justify?: "center" | "end" | "spaceBetween" | "start" | undefined;
3117
+ align?: "center" | "end" | "start" | "stretch" | undefined;
3118
+ weight?: number[] | {
3119
+ path: string;
3120
+ } | undefined;
3121
+ }>;
3122
+ };
3123
+ List: {
3124
+ description: string;
3125
+ props: import("zod").ZodObject<{
3126
+ children: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodObject<{
3127
+ componentId: import("zod").ZodString;
3128
+ path: import("zod").ZodString;
3129
+ }, "strip", import("zod").ZodTypeAny, {
3130
+ componentId: string;
3131
+ path: string;
3132
+ }, {
3133
+ componentId: string;
3134
+ path: string;
3135
+ }>]>>;
3136
+ items: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodObject<{
3137
+ componentId: import("zod").ZodString;
3138
+ path: import("zod").ZodString;
3139
+ }, "strip", import("zod").ZodTypeAny, {
3140
+ componentId: string;
3141
+ path: string;
3142
+ }, {
3143
+ componentId: string;
3144
+ path: string;
3145
+ }>]>>;
3146
+ direction: import("zod").ZodOptional<import("zod").ZodEnum<["vertical", "horizontal"]>>;
3147
+ align: import("zod").ZodOptional<import("zod").ZodEnum<["start", "center", "end", "stretch"]>>;
3148
+ }, "strip", import("zod").ZodTypeAny, {
3149
+ children?: string[] | {
3150
+ componentId: string;
3151
+ path: string;
3152
+ } | undefined;
3153
+ items?: string[] | {
3154
+ componentId: string;
3155
+ path: string;
3156
+ } | undefined;
3157
+ direction?: "horizontal" | "vertical" | undefined;
3158
+ align?: "center" | "end" | "start" | "stretch" | undefined;
3159
+ }, {
3160
+ children?: string[] | {
3161
+ componentId: string;
3162
+ path: string;
3163
+ } | undefined;
3164
+ items?: string[] | {
3165
+ componentId: string;
3166
+ path: string;
3167
+ } | undefined;
3168
+ direction?: "horizontal" | "vertical" | undefined;
3169
+ align?: "center" | "end" | "start" | "stretch" | undefined;
3170
+ }>;
3171
+ };
3172
+ Tabs: {
3173
+ description: string;
3174
+ props: import("zod").ZodObject<{
3175
+ tabs: import("zod").ZodArray<import("zod").ZodObject<{
3176
+ title: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3177
+ path: import("zod").ZodString;
3178
+ }, "strip", import("zod").ZodTypeAny, {
3179
+ path: string;
3180
+ }, {
3181
+ path: string;
3182
+ }>]>;
3183
+ child: import("zod").ZodString;
3184
+ }, "strip", import("zod").ZodTypeAny, {
3185
+ title: string | {
3186
+ path: string;
3187
+ };
3188
+ child: string;
3189
+ }, {
3190
+ title: string | {
3191
+ path: string;
3192
+ };
3193
+ child: string;
3194
+ }>, "many">;
3195
+ }, "strip", import("zod").ZodTypeAny, {
3196
+ tabs: {
3197
+ title: string | {
3198
+ path: string;
3199
+ };
3200
+ child: string;
3201
+ }[];
3202
+ }, {
3203
+ tabs: {
3204
+ title: string | {
3205
+ path: string;
3206
+ };
3207
+ child: string;
3208
+ }[];
3209
+ }>;
3210
+ };
3211
+ Modal: {
3212
+ description: string;
3213
+ props: import("zod").ZodObject<{
3214
+ trigger: import("zod").ZodString;
3215
+ content: import("zod").ZodString;
3216
+ }, "strip", import("zod").ZodTypeAny, {
3217
+ trigger: string;
3218
+ content: string;
3219
+ }, {
3220
+ trigger: string;
3221
+ content: string;
3222
+ }>;
3223
+ };
3224
+ CheckBox: {
3225
+ description: string;
3226
+ props: import("zod").ZodObject<{
3227
+ label: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3228
+ path: import("zod").ZodString;
3229
+ }, "strip", import("zod").ZodTypeAny, {
3230
+ path: string;
3231
+ }, {
3232
+ path: string;
3233
+ }>]>>;
3234
+ value: import("zod").ZodUnion<[import("zod").ZodBoolean, import("zod").ZodObject<{
3235
+ path: import("zod").ZodString;
3236
+ }, "strip", import("zod").ZodTypeAny, {
3237
+ path: string;
3238
+ }, {
3239
+ path: string;
3240
+ }>]>;
3241
+ }, "strip", import("zod").ZodTypeAny, {
3242
+ label?: string | {
3243
+ path: string;
3244
+ } | undefined;
3245
+ value: boolean | {
3246
+ path: string;
3247
+ };
3248
+ }, {
3249
+ label?: string | {
3250
+ path: string;
3251
+ } | undefined;
3252
+ value: boolean | {
3253
+ path: string;
3254
+ };
3255
+ }>;
3256
+ };
3257
+ TextField: {
3258
+ description: string;
3259
+ props: import("zod").ZodObject<{
3260
+ label: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3261
+ path: import("zod").ZodString;
3262
+ }, "strip", import("zod").ZodTypeAny, {
3263
+ path: string;
3264
+ }, {
3265
+ path: string;
3266
+ }>]>>;
3267
+ value: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3268
+ path: import("zod").ZodString;
3269
+ }, "strip", import("zod").ZodTypeAny, {
3270
+ path: string;
3271
+ }, {
3272
+ path: string;
3273
+ }>]>>;
3274
+ variant: import("zod").ZodOptional<import("zod").ZodEnum<["shortText", "longText", "number", "obscured"]>>;
3275
+ checks: import("zod").ZodOptional<import("zod").ZodAny>;
3276
+ validationRegexp: import("zod").ZodOptional<import("zod").ZodString>;
3277
+ }, "strip", import("zod").ZodTypeAny, {
3278
+ label?: string | {
3279
+ path: string;
3280
+ } | undefined;
3281
+ value?: string | {
3282
+ path: string;
3283
+ } | undefined;
3284
+ variant?: "longText" | "number" | "obscured" | "shortText" | undefined;
3285
+ checks?: any;
3286
+ validationRegexp?: string | undefined;
3287
+ }, {
3288
+ label?: string | {
3289
+ path: string;
3290
+ } | undefined;
3291
+ value?: string | {
3292
+ path: string;
3293
+ } | undefined;
3294
+ variant?: "longText" | "number" | "obscured" | "shortText" | undefined;
3295
+ checks?: any;
3296
+ validationRegexp?: string | undefined;
3297
+ }>;
3298
+ };
3299
+ ChoicePicker: {
3300
+ description: string;
3301
+ props: import("zod").ZodObject<{
3302
+ options: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodObject<{
3303
+ label: import("zod").ZodString;
3304
+ value: import("zod").ZodString;
3305
+ }, "strip", import("zod").ZodTypeAny, {
3306
+ label: string;
3307
+ value: string;
3308
+ }, {
3309
+ label: string;
3310
+ value: string;
3311
+ }>, "many">, import("zod").ZodObject<{
3312
+ path: import("zod").ZodString;
3313
+ }, "strip", import("zod").ZodTypeAny, {
3314
+ path: string;
3315
+ }, {
3316
+ path: string;
3317
+ }>]>;
3318
+ value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodObject<{
3319
+ path: import("zod").ZodString;
3320
+ }, "strip", import("zod").ZodTypeAny, {
3321
+ path: string;
3322
+ }, {
3323
+ path: string;
3324
+ }>]>;
3325
+ variant: import("zod").ZodOptional<import("zod").ZodEnum<["mutuallyExclusive", "multipleSelection"]>>;
3326
+ }, "strip", import("zod").ZodTypeAny, {
3327
+ options: {
3328
+ label: string;
3329
+ value: string;
3330
+ }[] | {
3331
+ path: string;
3332
+ };
3333
+ value: string | string[] | {
3334
+ path: string;
3335
+ };
3336
+ variant?: "multipleSelection" | "mutuallyExclusive" | undefined;
3337
+ }, {
3338
+ options: {
3339
+ label: string;
3340
+ value: string;
3341
+ }[] | {
3342
+ path: string;
3343
+ };
3344
+ value: string | string[] | {
3345
+ path: string;
3346
+ };
3347
+ variant?: "multipleSelection" | "mutuallyExclusive" | undefined;
3348
+ }>;
3349
+ };
3350
+ Slider: {
3351
+ description: string;
3352
+ props: import("zod").ZodObject<{
3353
+ value: import("zod").ZodUnion<[import("zod").ZodNumber, import("zod").ZodObject<{
3354
+ path: import("zod").ZodString;
3355
+ }, "strip", import("zod").ZodTypeAny, {
3356
+ path: string;
3357
+ }, {
3358
+ path: string;
3359
+ }>]>;
3360
+ min: import("zod").ZodOptional<import("zod").ZodNumber>;
3361
+ max: import("zod").ZodOptional<import("zod").ZodNumber>;
3362
+ }, "strip", import("zod").ZodTypeAny, {
3363
+ value: number | {
3364
+ path: string;
3365
+ };
3366
+ min?: number | undefined;
3367
+ max?: number | undefined;
3368
+ }, {
3369
+ value: number | {
3370
+ path: string;
3371
+ };
3372
+ min?: number | undefined;
3373
+ max?: number | undefined;
3374
+ }>;
3375
+ };
3376
+ DateTimeInput: {
3377
+ description: string;
3378
+ props: import("zod").ZodObject<{
3379
+ value: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3380
+ path: import("zod").ZodString;
3381
+ }, "strip", import("zod").ZodTypeAny, {
3382
+ path: string;
3383
+ }, {
3384
+ path: string;
3385
+ }>]>>;
3386
+ label: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3387
+ path: import("zod").ZodString;
3388
+ }, "strip", import("zod").ZodTypeAny, {
3389
+ path: string;
3390
+ }, {
3391
+ path: string;
3392
+ }>]>>;
3393
+ enableDate: import("zod").ZodOptional<import("zod").ZodBoolean>;
3394
+ enableTime: import("zod").ZodOptional<import("zod").ZodBoolean>;
3395
+ min: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3396
+ path: import("zod").ZodString;
3397
+ }, "strip", import("zod").ZodTypeAny, {
3398
+ path: string;
3399
+ }, {
3400
+ path: string;
3401
+ }>]>>;
3402
+ max: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3403
+ path: import("zod").ZodString;
3404
+ }, "strip", import("zod").ZodTypeAny, {
3405
+ path: string;
3406
+ }, {
3407
+ path: string;
3408
+ }>]>>;
3409
+ }, "strip", import("zod").ZodTypeAny, {
3410
+ value?: string | {
3411
+ path: string;
3412
+ } | undefined;
3413
+ label?: string | {
3414
+ path: string;
3415
+ } | undefined;
3416
+ enableDate?: boolean | undefined;
3417
+ enableTime?: boolean | undefined;
3418
+ min?: string | {
3419
+ path: string;
3420
+ } | undefined;
3421
+ max?: string | {
3422
+ path: string;
3423
+ } | undefined;
3424
+ }, {
3425
+ value?: string | {
3426
+ path: string;
3427
+ } | undefined;
3428
+ label?: string | {
3429
+ path: string;
3430
+ } | undefined;
3431
+ enableDate?: boolean | undefined;
3432
+ enableTime?: boolean | undefined;
3433
+ min?: string | {
3434
+ path: string;
3435
+ } | undefined;
3436
+ max?: string | {
3437
+ path: string;
3438
+ } | undefined;
3439
+ }>;
3440
+ };
3441
+ Overline: {
3442
+ description: string;
3443
+ props: import("zod").ZodObject<{
3444
+ text: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3445
+ path: import("zod").ZodString;
3446
+ }, "strip", import("zod").ZodTypeAny, {
3447
+ path: string;
3448
+ }, {
3449
+ path: string;
3450
+ }>]>;
3451
+ }, "strip", import("zod").ZodTypeAny, {
3452
+ text: string | {
3453
+ path: string;
3454
+ };
3455
+ }, {
3456
+ text: string | {
3457
+ path: string;
3458
+ };
3459
+ }>;
3460
+ };
3461
+ Badge: {
3462
+ description: string;
3463
+ props: import("zod").ZodObject<{
3464
+ label: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3465
+ path: import("zod").ZodString;
3466
+ }, "strip", import("zod").ZodTypeAny, {
3467
+ path: string;
3468
+ }, {
3469
+ path: string;
3470
+ }>]>;
3471
+ tone: import("zod").ZodOptional<import("zod").ZodEnum<["neutral", "positive", "warning", "danger", "info"]>>;
3472
+ }, "strip", import("zod").ZodTypeAny, {
3473
+ label: string | {
3474
+ path: string;
3475
+ };
3476
+ tone?: "danger" | "info" | "neutral" | "positive" | "warning" | undefined;
3477
+ }, {
3478
+ label: string | {
3479
+ path: string;
3480
+ };
3481
+ tone?: "danger" | "info" | "neutral" | "positive" | "warning" | undefined;
3482
+ }>;
3483
+ };
3484
+ StatusBadge: {
3485
+ description: string;
3486
+ props: import("zod").ZodObject<{
3487
+ label: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3488
+ path: import("zod").ZodString;
3489
+ }, "strip", import("zod").ZodTypeAny, {
3490
+ path: string;
3491
+ }, {
3492
+ path: string;
3493
+ }>]>;
3494
+ status: import("zod").ZodOptional<import("zod").ZodEnum<["positive", "negative", "warning", "neutral"]>>;
3495
+ }, "strip", import("zod").ZodTypeAny, {
3496
+ label: string | {
3497
+ path: string;
3498
+ };
3499
+ status?: "negative" | "neutral" | "positive" | "warning" | undefined;
3500
+ }, {
3501
+ label: string | {
3502
+ path: string;
3503
+ };
3504
+ status?: "negative" | "neutral" | "positive" | "warning" | undefined;
3505
+ }>;
3506
+ };
3507
+ Callout: {
3508
+ description: string;
3509
+ props: import("zod").ZodObject<{
3510
+ body: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3511
+ path: import("zod").ZodString;
3512
+ }, "strip", import("zod").ZodTypeAny, {
3513
+ path: string;
3514
+ }, {
3515
+ path: string;
3516
+ }>]>;
3517
+ title: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3518
+ path: import("zod").ZodString;
3519
+ }, "strip", import("zod").ZodTypeAny, {
3520
+ path: string;
3521
+ }, {
3522
+ path: string;
3523
+ }>]>>;
3524
+ tone: import("zod").ZodOptional<import("zod").ZodEnum<["info", "positive", "warning", "neutral"]>>;
3525
+ }, "strip", import("zod").ZodTypeAny, {
3526
+ body: string | {
3527
+ path: string;
3528
+ };
3529
+ title?: string | {
3530
+ path: string;
3531
+ } | undefined;
3532
+ tone?: "info" | "neutral" | "positive" | "warning" | undefined;
3533
+ }, {
3534
+ body: string | {
3535
+ path: string;
3536
+ };
3537
+ title?: string | {
3538
+ path: string;
3539
+ } | undefined;
3540
+ tone?: "info" | "neutral" | "positive" | "warning" | undefined;
3541
+ }>;
3542
+ };
3543
+ BulletList: {
3544
+ description: string;
3545
+ props: import("zod").ZodObject<{
3546
+ items: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodString, "many">, import("zod").ZodObject<{
3547
+ path: import("zod").ZodString;
3548
+ }, "strip", import("zod").ZodTypeAny, {
3549
+ path: string;
3550
+ }, {
3551
+ path: string;
3552
+ }>]>;
3553
+ ordered: import("zod").ZodOptional<import("zod").ZodBoolean>;
3554
+ }, "strip", import("zod").ZodTypeAny, {
3555
+ items: string[] | {
3556
+ path: string;
3557
+ };
3558
+ ordered?: boolean | undefined;
3559
+ }, {
3560
+ items: string[] | {
3561
+ path: string;
3562
+ };
3563
+ ordered?: boolean | undefined;
3564
+ }>;
3565
+ };
3566
+ StatCard: {
3567
+ description: string;
3568
+ props: import("zod").ZodObject<{
3569
+ label: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3570
+ path: import("zod").ZodString;
3571
+ }, "strip", import("zod").ZodTypeAny, {
3572
+ path: string;
3573
+ }, {
3574
+ path: string;
3575
+ }>]>;
3576
+ value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3577
+ path: import("zod").ZodString;
3578
+ }, "strip", import("zod").ZodTypeAny, {
3579
+ path: string;
3580
+ }, {
3581
+ path: string;
3582
+ }>]>;
3583
+ delta: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3584
+ path: import("zod").ZodString;
3585
+ }, "strip", import("zod").ZodTypeAny, {
3586
+ path: string;
3587
+ }, {
3588
+ path: string;
3589
+ }>]>>;
3590
+ deltaTone: import("zod").ZodOptional<import("zod").ZodEnum<["positive", "negative", "neutral"]>>;
3591
+ caption: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3592
+ path: import("zod").ZodString;
3593
+ }, "strip", import("zod").ZodTypeAny, {
3594
+ path: string;
3595
+ }, {
3596
+ path: string;
3597
+ }>]>>;
3598
+ }, "strip", import("zod").ZodTypeAny, {
3599
+ label: string | {
3600
+ path: string;
3601
+ };
3602
+ value: string | {
3603
+ path: string;
3604
+ };
3605
+ delta?: string | {
3606
+ path: string;
3607
+ } | undefined;
3608
+ deltaTone?: "negative" | "neutral" | "positive" | undefined;
3609
+ caption?: string | {
3610
+ path: string;
3611
+ } | undefined;
3612
+ }, {
3613
+ label: string | {
3614
+ path: string;
3615
+ };
3616
+ value: string | {
3617
+ path: string;
3618
+ };
3619
+ delta?: string | {
3620
+ path: string;
3621
+ } | undefined;
3622
+ deltaTone?: "negative" | "neutral" | "positive" | undefined;
3623
+ caption?: string | {
3624
+ path: string;
3625
+ } | undefined;
3626
+ }>;
3627
+ };
3628
+ Metric: {
3629
+ description: string;
3630
+ props: import("zod").ZodObject<{
3631
+ label: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3632
+ path: import("zod").ZodString;
3633
+ }, "strip", import("zod").ZodTypeAny, {
3634
+ path: string;
3635
+ }, {
3636
+ path: string;
3637
+ }>]>;
3638
+ value: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3639
+ path: import("zod").ZodString;
3640
+ }, "strip", import("zod").ZodTypeAny, {
3641
+ path: string;
3642
+ }, {
3643
+ path: string;
3644
+ }>]>;
3645
+ trend: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
3646
+ path: import("zod").ZodString;
3647
+ }, "strip", import("zod").ZodTypeAny, {
3648
+ path: string;
3649
+ }, {
3650
+ path: string;
3651
+ }>]>>;
3652
+ }, "strip", import("zod").ZodTypeAny, {
3653
+ label: string | {
3654
+ path: string;
3655
+ };
3656
+ value: string | {
3657
+ path: string;
3658
+ };
3659
+ trend?: string | {
3660
+ path: string;
3661
+ } | undefined;
3662
+ }, {
3663
+ label: string | {
3664
+ path: string;
3665
+ };
3666
+ value: string | {
3667
+ path: string;
3668
+ };
3669
+ trend?: string | {
3670
+ path: string;
3671
+ } | undefined;
3672
+ }>;
3673
+ };
3674
+ BarChart: {
3675
+ description: string;
3676
+ props: import("zod").ZodObject<{
3677
+ data: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodObject<{
3678
+ label: import("zod").ZodString;
3679
+ value: import("zod").ZodNumber;
3680
+ }, "strip", import("zod").ZodTypeAny, {
3681
+ label: string;
3682
+ value: number;
3683
+ }, {
3684
+ label: string;
3685
+ value: number;
3686
+ }>, "many">, import("zod").ZodObject<{
3687
+ path: import("zod").ZodString;
3688
+ }, "strip", import("zod").ZodTypeAny, {
3689
+ path: string;
3690
+ }, {
3691
+ path: string;
3692
+ }>]>;
3693
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
3694
+ }, "strip", import("zod").ZodTypeAny, {
3695
+ data: {
3696
+ label: string;
3697
+ value: number;
3698
+ }[] | {
3699
+ path: string;
3700
+ };
3701
+ height?: number | undefined;
3702
+ }, {
3703
+ data: {
3704
+ label: string;
3705
+ value: number;
3706
+ }[] | {
3707
+ path: string;
3708
+ };
3709
+ height?: number | undefined;
3710
+ }>;
3711
+ };
3712
+ HorizontalBarChart: {
3713
+ description: string;
3714
+ props: import("zod").ZodObject<{
3715
+ data: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodObject<{
3716
+ label: import("zod").ZodString;
3717
+ value: import("zod").ZodNumber;
3718
+ }, "strip", import("zod").ZodTypeAny, {
3719
+ label: string;
3720
+ value: number;
3721
+ }, {
3722
+ label: string;
3723
+ value: number;
3724
+ }>, "many">, import("zod").ZodObject<{
3725
+ path: import("zod").ZodString;
3726
+ }, "strip", import("zod").ZodTypeAny, {
3727
+ path: string;
3728
+ }, {
3729
+ path: string;
3730
+ }>]>;
3731
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
3732
+ }, "strip", import("zod").ZodTypeAny, {
3733
+ data: {
3734
+ label: string;
3735
+ value: number;
3736
+ }[] | {
3737
+ path: string;
3738
+ };
3739
+ height?: number | undefined;
3740
+ }, {
3741
+ data: {
3742
+ label: string;
3743
+ value: number;
3744
+ }[] | {
3745
+ path: string;
3746
+ };
3747
+ height?: number | undefined;
3748
+ }>;
3749
+ };
3750
+ LineChart: {
3751
+ description: string;
3752
+ props: import("zod").ZodObject<{
3753
+ data: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodObject<{
3754
+ label: import("zod").ZodString;
3755
+ value: import("zod").ZodNumber;
3756
+ }, "strip", import("zod").ZodTypeAny, {
3757
+ label: string;
3758
+ value: number;
3759
+ }, {
3760
+ label: string;
3761
+ value: number;
3762
+ }>, "many">, import("zod").ZodObject<{
3763
+ path: import("zod").ZodString;
3764
+ }, "strip", import("zod").ZodTypeAny, {
3765
+ path: string;
3766
+ }, {
3767
+ path: string;
3768
+ }>]>;
3769
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
3770
+ }, "strip", import("zod").ZodTypeAny, {
3771
+ data: {
3772
+ label: string;
3773
+ value: number;
3774
+ }[] | {
3775
+ path: string;
3776
+ };
3777
+ height?: number | undefined;
3778
+ }, {
3779
+ data: {
3780
+ label: string;
3781
+ value: number;
3782
+ }[] | {
3783
+ path: string;
3784
+ };
3785
+ height?: number | undefined;
3786
+ }>;
3787
+ };
3788
+ DonutChart: {
3789
+ description: string;
3790
+ props: import("zod").ZodObject<{
3791
+ data: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodObject<{
3792
+ label: import("zod").ZodString;
3793
+ value: import("zod").ZodNumber;
3794
+ }, "strip", import("zod").ZodTypeAny, {
3795
+ label: string;
3796
+ value: number;
3797
+ }, {
3798
+ label: string;
3799
+ value: number;
3800
+ }>, "many">, import("zod").ZodObject<{
3801
+ path: import("zod").ZodString;
3802
+ }, "strip", import("zod").ZodTypeAny, {
3803
+ path: string;
3804
+ }, {
3805
+ path: string;
3806
+ }>]>;
3807
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
3808
+ }, "strip", import("zod").ZodTypeAny, {
3809
+ data: {
3810
+ label: string;
3811
+ value: number;
3812
+ }[] | {
3813
+ path: string;
3814
+ };
3815
+ height?: number | undefined;
3816
+ }, {
3817
+ data: {
3818
+ label: string;
3819
+ value: number;
3820
+ }[] | {
3821
+ path: string;
3822
+ };
3823
+ height?: number | undefined;
3824
+ }>;
3825
+ };
3826
+ PieChart: {
3827
+ description: string;
3828
+ props: import("zod").ZodObject<{
3829
+ data: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodObject<{
3830
+ label: import("zod").ZodString;
3831
+ value: import("zod").ZodNumber;
3832
+ }, "strip", import("zod").ZodTypeAny, {
3833
+ label: string;
3834
+ value: number;
3835
+ }, {
3836
+ label: string;
3837
+ value: number;
3838
+ }>, "many">, import("zod").ZodObject<{
3839
+ path: import("zod").ZodString;
3840
+ }, "strip", import("zod").ZodTypeAny, {
3841
+ path: string;
3842
+ }, {
3843
+ path: string;
3844
+ }>]>;
3845
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
3846
+ }, "strip", import("zod").ZodTypeAny, {
3847
+ data: {
3848
+ label: string;
3849
+ value: number;
3850
+ }[] | {
3851
+ path: string;
3852
+ };
3853
+ height?: number | undefined;
3854
+ }, {
3855
+ data: {
3856
+ label: string;
3857
+ value: number;
3858
+ }[] | {
3859
+ path: string;
3860
+ };
3861
+ height?: number | undefined;
3862
+ }>;
3863
+ };
3864
+ AreaChart: {
3865
+ description: string;
3866
+ props: import("zod").ZodObject<{
3867
+ data: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodObject<{
3868
+ label: import("zod").ZodString;
3869
+ value: import("zod").ZodNumber;
3870
+ }, "strip", import("zod").ZodTypeAny, {
3871
+ label: string;
3872
+ value: number;
3873
+ }, {
3874
+ label: string;
3875
+ value: number;
3876
+ }>, "many">, import("zod").ZodObject<{
3877
+ path: import("zod").ZodString;
3878
+ }, "strip", import("zod").ZodTypeAny, {
3879
+ path: string;
3880
+ }, {
3881
+ path: string;
3882
+ }>]>;
3883
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
3884
+ }, "strip", import("zod").ZodTypeAny, {
3885
+ data: {
3886
+ label: string;
3887
+ value: number;
3888
+ }[] | {
3889
+ path: string;
3890
+ };
3891
+ height?: number | undefined;
3892
+ }, {
3893
+ data: {
3894
+ label: string;
3895
+ value: number;
3896
+ }[] | {
3897
+ path: string;
3898
+ };
3899
+ height?: number | undefined;
3900
+ }>;
3901
+ };
3902
+ RadarChart: {
3903
+ description: string;
3904
+ props: import("zod").ZodObject<{
3905
+ data: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodObject<{
3906
+ label: import("zod").ZodString;
3907
+ value: import("zod").ZodNumber;
3908
+ }, "strip", import("zod").ZodTypeAny, {
3909
+ label: string;
3910
+ value: number;
3911
+ }, {
3912
+ label: string;
3913
+ value: number;
3914
+ }>, "many">, import("zod").ZodObject<{
3915
+ path: import("zod").ZodString;
3916
+ }, "strip", import("zod").ZodTypeAny, {
3917
+ path: string;
3918
+ }, {
3919
+ path: string;
3920
+ }>]>;
3921
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
3922
+ }, "strip", import("zod").ZodTypeAny, {
3923
+ data: {
3924
+ label: string;
3925
+ value: number;
3926
+ }[] | {
3927
+ path: string;
3928
+ };
3929
+ height?: number | undefined;
3930
+ }, {
3931
+ data: {
3932
+ label: string;
3933
+ value: number;
3934
+ }[] | {
3935
+ path: string;
3936
+ };
3937
+ height?: number | undefined;
3938
+ }>;
3939
+ };
3940
+ RadialChart: {
3941
+ description: string;
3942
+ props: import("zod").ZodObject<{
3943
+ data: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodObject<{
3944
+ label: import("zod").ZodString;
3945
+ value: import("zod").ZodNumber;
3946
+ }, "strip", import("zod").ZodTypeAny, {
3947
+ label: string;
3948
+ value: number;
3949
+ }, {
3950
+ label: string;
3951
+ value: number;
3952
+ }>, "many">, import("zod").ZodObject<{
3953
+ path: import("zod").ZodString;
3954
+ }, "strip", import("zod").ZodTypeAny, {
3955
+ path: string;
3956
+ }, {
3957
+ path: string;
3958
+ }>]>;
3959
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
3960
+ }, "strip", import("zod").ZodTypeAny, {
3961
+ data: {
3962
+ label: string;
3963
+ value: number;
3964
+ }[] | {
3965
+ path: string;
3966
+ };
3967
+ height?: number | undefined;
3968
+ }, {
3969
+ data: {
3970
+ label: string;
3971
+ value: number;
3972
+ }[] | {
3973
+ path: string;
3974
+ };
3975
+ height?: number | undefined;
3976
+ }>;
3977
+ };
3978
+ WaterfallChart: {
3979
+ description: string;
3980
+ props: import("zod").ZodObject<{
3981
+ data: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodObject<{
3982
+ label: import("zod").ZodString;
3983
+ value: import("zod").ZodNumber;
3984
+ }, "strip", import("zod").ZodTypeAny, {
3985
+ label: string;
3986
+ value: number;
3987
+ }, {
3988
+ label: string;
3989
+ value: number;
3990
+ }>, "many">, import("zod").ZodObject<{
3991
+ path: import("zod").ZodString;
3992
+ }, "strip", import("zod").ZodTypeAny, {
3993
+ path: string;
3994
+ }, {
3995
+ path: string;
3996
+ }>]>;
3997
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
3998
+ }, "strip", import("zod").ZodTypeAny, {
3999
+ data: {
4000
+ label: string;
4001
+ value: number;
4002
+ }[] | {
4003
+ path: string;
4004
+ };
4005
+ height?: number | undefined;
4006
+ }, {
4007
+ data: {
4008
+ label: string;
4009
+ value: number;
4010
+ }[] | {
4011
+ path: string;
4012
+ };
4013
+ height?: number | undefined;
4014
+ }>;
4015
+ };
4016
+ RiskGauge: {
4017
+ description: string;
4018
+ props: import("zod").ZodObject<{
4019
+ label: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
4020
+ path: import("zod").ZodString;
4021
+ }, "strip", import("zod").ZodTypeAny, {
4022
+ path: string;
4023
+ }, {
4024
+ path: string;
4025
+ }>]>>;
4026
+ value: import("zod").ZodNumber;
4027
+ riskLevel: import("zod").ZodOptional<import("zod").ZodEnum<["low", "medium", "high"]>>;
4028
+ description: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodObject<{
4029
+ path: import("zod").ZodString;
4030
+ }, "strip", import("zod").ZodTypeAny, {
4031
+ path: string;
4032
+ }, {
4033
+ path: string;
4034
+ }>]>>;
4035
+ min: import("zod").ZodOptional<import("zod").ZodNumber>;
4036
+ max: import("zod").ZodOptional<import("zod").ZodNumber>;
4037
+ }, "strip", import("zod").ZodTypeAny, {
4038
+ label?: string | {
4039
+ path: string;
4040
+ } | undefined;
4041
+ value: number;
4042
+ riskLevel?: "high" | "low" | "medium" | undefined;
4043
+ description?: string | {
4044
+ path: string;
4045
+ } | undefined;
4046
+ min?: number | undefined;
4047
+ max?: number | undefined;
4048
+ }, {
4049
+ label?: string | {
4050
+ path: string;
4051
+ } | undefined;
4052
+ value: number;
4053
+ riskLevel?: "high" | "low" | "medium" | undefined;
4054
+ description?: string | {
4055
+ path: string;
4056
+ } | undefined;
4057
+ min?: number | undefined;
4058
+ max?: number | undefined;
4059
+ }>;
4060
+ };
4061
+ ScatterChart: {
4062
+ description: string;
4063
+ props: import("zod").ZodObject<{
4064
+ data: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodObject<{
4065
+ x: import("zod").ZodNumber;
4066
+ y: import("zod").ZodNumber;
4067
+ label: import("zod").ZodOptional<import("zod").ZodString>;
4068
+ }, "strip", import("zod").ZodTypeAny, {
4069
+ x: number;
4070
+ y: number;
4071
+ label?: string | undefined;
4072
+ }, {
4073
+ x: number;
4074
+ y: number;
4075
+ label?: string | undefined;
4076
+ }>, "many">, import("zod").ZodObject<{
4077
+ path: import("zod").ZodString;
4078
+ }, "strip", import("zod").ZodTypeAny, {
4079
+ path: string;
4080
+ }, {
4081
+ path: string;
4082
+ }>]>;
4083
+ xLabel: import("zod").ZodOptional<import("zod").ZodString>;
4084
+ yLabel: import("zod").ZodOptional<import("zod").ZodString>;
4085
+ height: import("zod").ZodOptional<import("zod").ZodNumber>;
4086
+ }, "strip", import("zod").ZodTypeAny, {
4087
+ data: {
4088
+ x: number;
4089
+ y: number;
4090
+ label?: string | undefined;
4091
+ }[] | {
4092
+ path: string;
4093
+ };
4094
+ xLabel?: string | undefined;
4095
+ yLabel?: string | undefined;
4096
+ height?: number | undefined;
4097
+ }, {
4098
+ data: {
4099
+ x: number;
4100
+ y: number;
4101
+ label?: string | undefined;
4102
+ }[] | {
4103
+ path: string;
4104
+ };
4105
+ xLabel?: string | undefined;
4106
+ yLabel?: string | undefined;
4107
+ height?: number | undefined;
4108
+ }>;
4109
+ };
4110
+ DataTable: {
4111
+ description: string;
4112
+ props: import("zod").ZodObject<{
4113
+ columns: import("zod").ZodArray<import("zod").ZodObject<{
4114
+ key: import("zod").ZodString;
4115
+ label: import("zod").ZodString;
4116
+ align: import("zod").ZodOptional<import("zod").ZodEnum<["left", "right"]>>;
4117
+ }, "strip", import("zod").ZodTypeAny, {
4118
+ key: string;
4119
+ label: string;
4120
+ align?: "left" | "right" | undefined;
4121
+ }, {
4122
+ key: string;
4123
+ label: string;
4124
+ align?: "left" | "right" | undefined;
4125
+ }>, "many">;
4126
+ rows: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodNumber]>>, "many">, import("zod").ZodObject<{
4127
+ path: import("zod").ZodString;
4128
+ }, "strip", import("zod").ZodTypeAny, {
4129
+ path: string;
4130
+ }, {
4131
+ path: string;
4132
+ }>]>;
4133
+ }, "strip", import("zod").ZodTypeAny, {
4134
+ columns: {
4135
+ key: string;
4136
+ label: string;
4137
+ align?: "left" | "right" | undefined;
4138
+ }[];
4139
+ rows: Record<string, string | number>[] | {
4140
+ path: string;
4141
+ };
4142
+ }, {
4143
+ columns: {
4144
+ key: string;
4145
+ label: string;
4146
+ align?: "left" | "right" | undefined;
4147
+ }[];
4148
+ rows: Record<string, string | number>[] | {
4149
+ path: string;
4150
+ };
4151
+ }>;
4152
+ };
4153
+ Button: {
4154
+ description: string;
4155
+ props: import("zod").ZodObject<{
4156
+ child: import("zod").ZodString;
4157
+ variant: import("zod").ZodOptional<import("zod").ZodEnum<["default", "primary", "borderless"]>>;
4158
+ action: import("zod").ZodUnion<[import("zod").ZodObject<{
4159
+ event: import("zod").ZodObject<{
4160
+ name: import("zod").ZodString;
4161
+ context: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
4162
+ }, "strip", import("zod").ZodTypeAny, {
4163
+ name: string;
4164
+ context?: Record<string, unknown> | undefined;
4165
+ }, {
4166
+ name: string;
4167
+ context?: Record<string, unknown> | undefined;
4168
+ }>;
4169
+ }, "strip", import("zod").ZodTypeAny, {
4170
+ event: {
4171
+ name: string;
4172
+ context?: Record<string, unknown> | undefined;
4173
+ };
4174
+ }, {
4175
+ event: {
4176
+ name: string;
4177
+ context?: Record<string, unknown> | undefined;
4178
+ };
4179
+ }>, import("zod").ZodObject<{
4180
+ functionCall: import("zod").ZodObject<{
4181
+ call: import("zod").ZodString;
4182
+ args: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodUnknown>>;
4183
+ returnType: import("zod").ZodOptional<import("zod").ZodString>;
4184
+ }, "strip", import("zod").ZodTypeAny, {
4185
+ call: string;
4186
+ args?: Record<string, unknown> | undefined;
4187
+ returnType?: string | undefined;
4188
+ }, {
4189
+ call: string;
4190
+ args?: Record<string, unknown> | undefined;
4191
+ returnType?: string | undefined;
4192
+ }>;
4193
+ }, "strip", import("zod").ZodTypeAny, {
4194
+ functionCall: {
4195
+ call: string;
4196
+ args?: Record<string, unknown> | undefined;
4197
+ returnType?: string | undefined;
4198
+ };
4199
+ }, {
4200
+ functionCall: {
4201
+ call: string;
4202
+ args?: Record<string, unknown> | undefined;
4203
+ returnType?: string | undefined;
4204
+ };
4205
+ }>]>;
4206
+ checks: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
4207
+ condition: import("zod").ZodAny;
4208
+ message: import("zod").ZodString;
4209
+ }, "strip", import("zod").ZodTypeAny, {
4210
+ condition?: any;
4211
+ message: string;
4212
+ }, {
4213
+ condition?: any;
4214
+ message: string;
4215
+ }>, "many">>;
4216
+ }, "strip", import("zod").ZodTypeAny, {
4217
+ child: string;
4218
+ variant?: "borderless" | "default" | "primary" | undefined;
4219
+ action: {
4220
+ event: {
4221
+ name: string;
4222
+ context?: Record<string, unknown> | undefined;
4223
+ };
4224
+ } | {
4225
+ functionCall: {
4226
+ call: string;
4227
+ args?: Record<string, unknown> | undefined;
4228
+ returnType?: string | undefined;
4229
+ };
4230
+ };
4231
+ checks?: {
4232
+ condition?: any;
4233
+ message: string;
4234
+ }[] | undefined;
4235
+ }, {
4236
+ child: string;
4237
+ variant?: "borderless" | "default" | "primary" | undefined;
4238
+ action: {
4239
+ event: {
4240
+ name: string;
4241
+ context?: Record<string, unknown> | undefined;
4242
+ };
4243
+ } | {
4244
+ functionCall: {
4245
+ call: string;
4246
+ args?: Record<string, unknown> | undefined;
4247
+ returnType?: string | undefined;
4248
+ };
4249
+ };
4250
+ checks?: {
4251
+ condition?: any;
4252
+ message: string;
4253
+ }[] | undefined;
4254
+ }>;
4255
+ };
4256
+ ChoiceChips: {
4257
+ description: string;
4258
+ props: import("zod").ZodObject<{
4259
+ label: import("zod").ZodString;
4260
+ options: import("zod").ZodUnion<[import("zod").ZodArray<import("zod").ZodObject<{
4261
+ label: import("zod").ZodString;
4262
+ value: import("zod").ZodString;
4263
+ }, "strip", import("zod").ZodTypeAny, {
4264
+ label: string;
4265
+ value: string;
4266
+ }, {
4267
+ label: string;
4268
+ value: string;
4269
+ }>, "many">, import("zod").ZodObject<{
4270
+ path: import("zod").ZodString;
4271
+ }, "strip", import("zod").ZodTypeAny, {
4272
+ path: string;
4273
+ }, {
4274
+ path: string;
4275
+ }>]>;
4276
+ value: import("zod").ZodObject<{
4277
+ path: import("zod").ZodString;
4278
+ }, "strip", import("zod").ZodTypeAny, {
4279
+ path: string;
4280
+ }, {
4281
+ path: string;
4282
+ }>;
4283
+ multi: import("zod").ZodOptional<import("zod").ZodBoolean>;
4284
+ }, "strip", import("zod").ZodTypeAny, {
4285
+ label: string;
4286
+ options: {
4287
+ label: string;
4288
+ value: string;
4289
+ }[] | {
4290
+ path: string;
4291
+ };
4292
+ value: {
4293
+ path: string;
4294
+ };
4295
+ multi?: boolean | undefined;
4296
+ }, {
4297
+ label: string;
4298
+ options: {
4299
+ label: string;
4300
+ value: string;
4301
+ }[] | {
4302
+ path: string;
4303
+ };
4304
+ value: {
4305
+ path: string;
4306
+ };
4307
+ multi?: boolean | undefined;
4308
+ }>;
4309
+ };
4310
+ ReportGenerationCard: {
4311
+ description: string;
4312
+ props: import("zod").ZodObject<{
4313
+ report_id: import("zod").ZodOptional<import("zod").ZodString>;
4314
+ report_name: import("zod").ZodOptional<import("zod").ZodString>;
4315
+ blob_url: import("zod").ZodOptional<import("zod").ZodString>;
4316
+ generated_at: import("zod").ZodOptional<import("zod").ZodString>;
4317
+ status: import("zod").ZodOptional<import("zod").ZodString>;
4318
+ message: import("zod").ZodOptional<import("zod").ZodString>;
4319
+ }, "strip", import("zod").ZodTypeAny, {
4320
+ report_id?: string | undefined;
4321
+ report_name?: string | undefined;
4322
+ blob_url?: string | undefined;
4323
+ generated_at?: string | undefined;
4324
+ status?: string | undefined;
4325
+ message?: string | undefined;
4326
+ }, {
4327
+ report_id?: string | undefined;
4328
+ report_name?: string | undefined;
4329
+ blob_url?: string | undefined;
4330
+ generated_at?: string | undefined;
4331
+ status?: string | undefined;
4332
+ message?: string | undefined;
4333
+ }>;
4334
+ };
4335
+ };
4336
+ //#endregion
4337
+ //#region src/components/ui/button.d.ts
4338
+ declare const buttonVariants: (props?: ({
4339
+ variant?: "default" | "destructive" | "ghost" | "link" | "outline" | "secondary" | null | undefined;
4340
+ size?: "default" | "icon" | "icon-lg" | "icon-sm" | "icon-xs" | "lg" | "sm" | "xs" | null | undefined;
4341
+ } & import("class-variance-authority/types").ClassProp) | undefined) => string;
4342
+ declare function Button({ className, variant, size, ...props }: Button$1.Props & VariantProps<typeof buttonVariants>): import("react").JSX.Element;
4343
+ //#endregion
4344
+ //#region src/components/ui/input.d.ts
4345
+ declare function Input({ className, type, ...props }: React$2.ComponentProps<"input">): React$2.JSX.Element;
4346
+ //#endregion
4347
+ //#region src/components/ui/scroll-area.d.ts
4348
+ declare function ScrollArea({ className, children, ...props }: ScrollArea$1.Root.Props): React$2.JSX.Element;
4349
+ declare function ScrollBar({ className, orientation, ...props }: ScrollArea$1.Scrollbar.Props): React$2.JSX.Element;
4350
+ //#endregion
4351
+ //#region src/components/ui/sheet.d.ts
4352
+ declare function Sheet({ ...props }: Dialog.Root.Props): React$2.JSX.Element;
4353
+ declare function SheetTrigger({ ...props }: Dialog.Trigger.Props): React$2.JSX.Element;
4354
+ declare function SheetClose({ ...props }: Dialog.Close.Props): React$2.JSX.Element;
4355
+ declare function SheetContent({ className, children, side, showCloseButton, ...props }: Dialog.Popup.Props & {
4356
+ side?: "top" | "right" | "bottom" | "left";
4357
+ showCloseButton?: boolean;
4358
+ }): React$2.JSX.Element;
4359
+ declare function SheetHeader({ className, ...props }: React$2.ComponentProps<"div">): React$2.JSX.Element;
4360
+ declare function SheetFooter({ className, ...props }: React$2.ComponentProps<"div">): React$2.JSX.Element;
4361
+ declare function SheetTitle({ className, ...props }: Dialog.Title.Props): React$2.JSX.Element;
4362
+ declare function SheetDescription({ className, ...props }: Dialog.Description.Props): React$2.JSX.Element;
4363
+ //#endregion
4364
+ //#region src/lib/surface-bus.d.ts
4365
+ type A2UIOp = Record<string, unknown> & {
4366
+ version?: string;
4367
+ };
4368
+ type Snapshot = {
4369
+ surfaceId: string | null;
4370
+ ops: A2UIOp[];
4371
+ };
4372
+ type Listener = (snap: Snapshot) => void;
4373
+ /**
4374
+ * A central event bus for managing generative UI operations.
4375
+ * Allows components to push and subscribe to Agentic UI state changes.
4376
+ */
4377
+ declare const surfaceBus: {
4378
+ push(channel: string, ops: A2UIOp[]): void;
4379
+ reset(channel: string): void;
4380
+ snapshot(channel: string): Snapshot;
4381
+ subscribe(channel: string, fn: Listener): () => void;
4382
+ };
4383
+ //#endregion
4384
+ export { A2UICanvas, A2UICanvasProps, A2UICatalog, A2UILayout, A2UIOp, A2UIPayload, A2UIProps, AGUIChatContext, AIChatContext, AIChatProviderProps, AIChatServerOptions, ApiRequestSchema, ApiResponseSchema, ApiSchema, AssistantMessageContentStyles, AudioInputContent, BadgeStyles, Button, CATALOG_ID, ChatLabels, ChatManager, ChatManagerBaseProps, ChatManagerComponentStyles, ChatManagerProps, ChatMessage, ChatSession, ChatTheme, ComponentPosition, DisplayMode, DocumentInputContent, HITLState, HITLStatus, HeaderStyles, ISessionMetadata, ImageInputContent, Input, InputContent, InputContentDataSource, InputContentSource, InputContentUrlSource, InputStyles, InterruptState, LabelStyles, Message, MessageContentStyles, MessageStyles, NewConversationButtonStyles, OmniChat, OmniChatProps, PendingAction, PromptChip, PromptChipStyles, PromptChips, Role, ScrollArea, ScrollBar, SessionListStyles, SessionManager, SessionManagerComponentStyles, SessionManagerProps, SessionUpdate, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, SkeletonStyles, SlotValue, StorageMode, TextInputContent, ThinkingStepStyles, ToggleButtonPosition, ToolCall, ToolCallStepStyles, type UseChatHelpers, VideoInputContent, WelcomeScreenProps, buttonVariants, catalog, catalogSchema, definitions, surfaceBus, useAGUIChat, useAGUIChatContext, useAIChatContext, useAIChatStore, useChatContext, useHITL, useInterrupts };
4385
+ //# sourceMappingURL=index.d.cts.map