@websolutespa/ask-ui 1.0.0 → 1.0.2

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.
@@ -1,11 +1,46 @@
1
- import { VariantProps } from "class-variance-authority";
2
- import * as React from "react";
1
+ import { Accordion as Accordion$1, AlertDialog as AlertDialog$1, AspectRatio as AspectRatio$1, Avatar as Avatar$1, Checkbox as Checkbox$1, Collapsible as Collapsible$1, ContextMenu as ContextMenu$1, Dialog as Dialog$1, Direction, DropdownMenu as DropdownMenu$1, HoverCard as HoverCard$1, Label as Label$1, Menubar as Menubar$1, NavigationMenu as NavigationMenu$1, Popover as Popover$1, Progress as Progress$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Select as Select$1, Separator as Separator$1, Slider as Slider$1, Switch as Switch$1, Tabs as Tabs$1, Toggle as Toggle$1, ToggleGroup as ToggleGroup$1, Tooltip as Tooltip$1 } from "radix-ui";
2
+ import * as React$1 from "react";
3
+ import { ComponentProps, FormEvent, HTMLAttributes, PropsWithChildren, ReactNode, RefObject } from "react";
3
4
  import * as _$react_jsx_runtime0 from "react/jsx-runtime";
5
+ import { VariantProps } from "class-variance-authority";
6
+ import { StickToBottom } from "use-stick-to-bottom";
7
+ import { Streamdown } from "streamdown";
8
+ import { Command as Command$1 } from "cmdk";
9
+ import { DayButton, DayPicker, Locale } from "react-day-picker";
10
+ import useEmblaCarousel, { UseEmblaCarouselType } from "embla-carousel-react";
11
+ import * as RechartsPrimitive from "recharts";
12
+ import { TooltipValueType } from "recharts";
13
+ import { Combobox as Combobox$1 } from "@base-ui/react";
14
+ import { Drawer as Drawer$1 } from "vaul";
15
+ import { OTPInput } from "input-otp";
16
+ import * as ResizablePrimitive from "react-resizable-panels";
17
+ import { ToasterProps } from "sonner";
18
+ import { ChatStatus, FileUIPart, SourceDocumentUIPart, UIMessage } from "ai";
4
19
  import * as _$class_variance_authority_types0 from "class-variance-authority/types";
5
20
 
21
+ //#region src/components/accordion.d.ts
22
+ declare function Accordion({
23
+ className,
24
+ ...props
25
+ }: React$1.ComponentProps<typeof Accordion$1.Root>): _$react_jsx_runtime0.JSX.Element;
26
+ declare function AccordionItem({
27
+ className,
28
+ ...props
29
+ }: React$1.ComponentProps<typeof Accordion$1.Item>): _$react_jsx_runtime0.JSX.Element;
30
+ declare function AccordionTrigger({
31
+ className,
32
+ children,
33
+ ...props
34
+ }: React$1.ComponentProps<typeof Accordion$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
35
+ declare function AccordionContent({
36
+ className,
37
+ children,
38
+ ...props
39
+ }: React$1.ComponentProps<typeof Accordion$1.Content>): _$react_jsx_runtime0.JSX.Element;
40
+ //#endregion
6
41
  //#region src/components/button.d.ts
7
42
  declare const buttonVariants: (props?: ({
8
- variant?: "default" | "outline" | "secondary" | "ghost" | "destructive" | "link" | null | undefined;
43
+ variant?: "link" | "default" | "outline" | "secondary" | "ghost" | "destructive" | null | undefined;
9
44
  size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
10
45
  } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
11
46
  declare function Button({
@@ -14,8 +49,2200 @@ declare function Button({
14
49
  size,
15
50
  asChild,
16
51
  ...props
17
- }: React.ComponentProps<'button'> & VariantProps<typeof buttonVariants> & {
52
+ }: React$1.ComponentProps<'button'> & VariantProps<typeof buttonVariants> & {
53
+ asChild?: boolean;
54
+ }): _$react_jsx_runtime0.JSX.Element;
55
+ //#endregion
56
+ //#region src/components/hover-card.d.ts
57
+ declare function HoverCard({
58
+ ...props
59
+ }: React$1.ComponentProps<typeof HoverCard$1.Root>): _$react_jsx_runtime0.JSX.Element;
60
+ declare function HoverCardTrigger({
61
+ ...props
62
+ }: React$1.ComponentProps<typeof HoverCard$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
63
+ declare function HoverCardContent({
64
+ className,
65
+ align,
66
+ sideOffset,
67
+ container,
68
+ ...props
69
+ }: React$1.ComponentProps<typeof HoverCard$1.Content> & {
70
+ container?: Element | DocumentFragment | null;
71
+ }): _$react_jsx_runtime0.JSX.Element;
72
+ //#endregion
73
+ //#region src/components/ai-elements/attachments.d.ts
74
+ type AttachmentData = (FileUIPart & {
75
+ id: string;
76
+ }) | (SourceDocumentUIPart & {
77
+ id: string;
78
+ });
79
+ type AttachmentMediaCategory = 'image' | 'video' | 'audio' | 'document' | 'source' | 'unknown';
80
+ type AttachmentVariant = 'grid' | 'inline' | 'list';
81
+ declare const getMediaCategory: (data: AttachmentData) => AttachmentMediaCategory;
82
+ declare const getAttachmentLabel: (data: AttachmentData) => string;
83
+ interface AttachmentsContextValue {
84
+ variant: AttachmentVariant;
85
+ }
86
+ interface AttachmentContextValue {
87
+ data: AttachmentData;
88
+ mediaCategory: AttachmentMediaCategory;
89
+ onRemove?: () => void;
90
+ variant: AttachmentVariant;
91
+ }
92
+ declare const useAttachmentsContext: () => AttachmentsContextValue;
93
+ declare const useAttachmentContext: () => AttachmentContextValue;
94
+ type AttachmentsProps = HTMLAttributes<HTMLDivElement> & {
95
+ variant?: AttachmentVariant;
96
+ };
97
+ declare const Attachments: ({
98
+ variant,
99
+ className,
100
+ children,
101
+ ...props
102
+ }: AttachmentsProps) => _$react_jsx_runtime0.JSX.Element;
103
+ type AttachmentProps = HTMLAttributes<HTMLDivElement> & {
104
+ data: AttachmentData;
105
+ onRemove?: () => void;
106
+ };
107
+ declare const Attachment: ({
108
+ data,
109
+ onRemove,
110
+ className,
111
+ children,
112
+ ...props
113
+ }: AttachmentProps) => _$react_jsx_runtime0.JSX.Element;
114
+ type AttachmentPreviewProps = HTMLAttributes<HTMLDivElement> & {
115
+ fallbackIcon?: ReactNode;
116
+ };
117
+ declare const AttachmentPreview: ({
118
+ fallbackIcon,
119
+ className,
120
+ ...props
121
+ }: AttachmentPreviewProps) => _$react_jsx_runtime0.JSX.Element;
122
+ type AttachmentInfoProps = HTMLAttributes<HTMLDivElement> & {
123
+ showMediaType?: boolean;
124
+ };
125
+ declare const AttachmentInfo: ({
126
+ showMediaType,
127
+ className,
128
+ ...props
129
+ }: AttachmentInfoProps) => _$react_jsx_runtime0.JSX.Element | null;
130
+ type AttachmentRemoveProps = ComponentProps<typeof Button> & {
131
+ label?: string;
132
+ };
133
+ declare const AttachmentRemove: ({
134
+ label,
135
+ className,
136
+ children,
137
+ ...props
138
+ }: AttachmentRemoveProps) => _$react_jsx_runtime0.JSX.Element | null;
139
+ type AttachmentHoverCardProps = ComponentProps<typeof HoverCard>;
140
+ declare const AttachmentHoverCard: ({
141
+ openDelay,
142
+ closeDelay,
143
+ ...props
144
+ }: AttachmentHoverCardProps) => _$react_jsx_runtime0.JSX.Element;
145
+ type AttachmentHoverCardTriggerProps = ComponentProps<typeof HoverCardTrigger>;
146
+ declare const AttachmentHoverCardTrigger: (props: AttachmentHoverCardTriggerProps) => _$react_jsx_runtime0.JSX.Element;
147
+ type AttachmentHoverCardContentProps = ComponentProps<typeof HoverCardContent>;
148
+ declare const AttachmentHoverCardContent: ({
149
+ align,
150
+ className,
151
+ ...props
152
+ }: AttachmentHoverCardContentProps) => _$react_jsx_runtime0.JSX.Element;
153
+ type AttachmentEmptyProps = HTMLAttributes<HTMLDivElement>;
154
+ declare const AttachmentEmpty: ({
155
+ className,
156
+ children,
157
+ ...props
158
+ }: AttachmentEmptyProps) => _$react_jsx_runtime0.JSX.Element;
159
+ //#endregion
160
+ //#region src/components/ai-elements/conversation.d.ts
161
+ type ConversationProps = ComponentProps<typeof StickToBottom>;
162
+ declare const Conversation: ({
163
+ className,
164
+ ...props
165
+ }: ConversationProps) => _$react_jsx_runtime0.JSX.Element;
166
+ type ConversationContentProps = ComponentProps<typeof StickToBottom.Content>;
167
+ declare const ConversationContent: ({
168
+ className,
169
+ ...props
170
+ }: ConversationContentProps) => _$react_jsx_runtime0.JSX.Element;
171
+ type ConversationEmptyStateProps = ComponentProps<'div'> & {
172
+ title?: string;
173
+ description?: string;
174
+ icon?: React.ReactNode;
175
+ };
176
+ declare const ConversationEmptyState: ({
177
+ className,
178
+ title,
179
+ description,
180
+ icon,
181
+ children,
182
+ ...props
183
+ }: ConversationEmptyStateProps) => _$react_jsx_runtime0.JSX.Element;
184
+ type ConversationScrollButtonProps = ComponentProps<typeof Button>;
185
+ declare const ConversationScrollButton: ({
186
+ className,
187
+ ...props
188
+ }: ConversationScrollButtonProps) => false | _$react_jsx_runtime0.JSX.Element;
189
+ type ConversationDownloadProps = Omit<ComponentProps<typeof Button>, 'onClick'> & {
190
+ messages: UIMessage[];
191
+ filename?: string;
192
+ formatMessage?: (message: UIMessage, index: number) => string;
193
+ };
194
+ declare const messagesToMarkdown: (messages: UIMessage[], formatMessage?: (message: UIMessage, index: number) => string) => string;
195
+ declare const ConversationDownload: ({
196
+ messages,
197
+ filename,
198
+ formatMessage,
199
+ className,
200
+ children,
201
+ ...props
202
+ }: ConversationDownloadProps) => _$react_jsx_runtime0.JSX.Element;
203
+ //#endregion
204
+ //#region src/components/separator.d.ts
205
+ declare function Separator({
206
+ className,
207
+ orientation,
208
+ decorative,
209
+ ...props
210
+ }: React$1.ComponentProps<typeof Separator$1.Root>): _$react_jsx_runtime0.JSX.Element;
211
+ //#endregion
212
+ //#region src/components/button-group.d.ts
213
+ declare const buttonGroupVariants: (props?: ({
214
+ orientation?: "horizontal" | "vertical" | null | undefined;
215
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
216
+ declare function ButtonGroup({
217
+ className,
218
+ orientation,
219
+ ...props
220
+ }: React.ComponentProps<'div'> & VariantProps<typeof buttonGroupVariants>): _$react_jsx_runtime0.JSX.Element;
221
+ declare function ButtonGroupText({
222
+ className,
223
+ asChild,
224
+ ...props
225
+ }: React.ComponentProps<'div'> & {
18
226
  asChild?: boolean;
19
227
  }): _$react_jsx_runtime0.JSX.Element;
228
+ declare function ButtonGroupSeparator({
229
+ className,
230
+ orientation,
231
+ ...props
232
+ }: React.ComponentProps<typeof Separator>): _$react_jsx_runtime0.JSX.Element;
233
+ //#endregion
234
+ //#region src/components/ai-elements/message.d.ts
235
+ type MessageProps = HTMLAttributes<HTMLDivElement> & {
236
+ from: UIMessage['role'];
237
+ };
238
+ declare const Message: ({
239
+ className,
240
+ from,
241
+ ...props
242
+ }: MessageProps) => _$react_jsx_runtime0.JSX.Element;
243
+ type MessageContentProps = HTMLAttributes<HTMLDivElement>;
244
+ declare const MessageContent: ({
245
+ children,
246
+ className,
247
+ ...props
248
+ }: MessageContentProps) => _$react_jsx_runtime0.JSX.Element;
249
+ type MessageActionsProps = ComponentProps<'div'>;
250
+ declare const MessageActions: ({
251
+ className,
252
+ children,
253
+ ...props
254
+ }: MessageActionsProps) => _$react_jsx_runtime0.JSX.Element;
255
+ type MessageActionProps = ComponentProps<typeof Button> & {
256
+ tooltip?: string;
257
+ label?: string;
258
+ };
259
+ declare const MessageAction: ({
260
+ tooltip,
261
+ children,
262
+ label,
263
+ variant,
264
+ size,
265
+ ...props
266
+ }: MessageActionProps) => _$react_jsx_runtime0.JSX.Element;
267
+ type MessageBranchProps = HTMLAttributes<HTMLDivElement> & {
268
+ defaultBranch?: number;
269
+ onBranchChange?: (branchIndex: number) => void;
270
+ };
271
+ declare const MessageBranch: ({
272
+ defaultBranch,
273
+ onBranchChange,
274
+ className,
275
+ ...props
276
+ }: MessageBranchProps) => _$react_jsx_runtime0.JSX.Element;
277
+ type MessageBranchContentProps = HTMLAttributes<HTMLDivElement>;
278
+ declare const MessageBranchContent: ({
279
+ children,
280
+ ...props
281
+ }: MessageBranchContentProps) => _$react_jsx_runtime0.JSX.Element[];
282
+ type MessageBranchSelectorProps = ComponentProps<typeof ButtonGroup>;
283
+ declare const MessageBranchSelector: ({
284
+ className,
285
+ ...props
286
+ }: MessageBranchSelectorProps) => _$react_jsx_runtime0.JSX.Element | null;
287
+ type MessageBranchPreviousProps = ComponentProps<typeof Button>;
288
+ declare const MessageBranchPrevious: ({
289
+ children,
290
+ ...props
291
+ }: MessageBranchPreviousProps) => _$react_jsx_runtime0.JSX.Element;
292
+ type MessageBranchNextProps = ComponentProps<typeof Button>;
293
+ declare const MessageBranchNext: ({
294
+ children,
295
+ ...props
296
+ }: MessageBranchNextProps) => _$react_jsx_runtime0.JSX.Element;
297
+ type MessageBranchPageProps = HTMLAttributes<HTMLSpanElement>;
298
+ declare const MessageBranchPage: ({
299
+ className,
300
+ ...props
301
+ }: MessageBranchPageProps) => _$react_jsx_runtime0.JSX.Element;
302
+ type MessageResponseProps = ComponentProps<typeof Streamdown>;
303
+ declare const MessageResponse: React$1.MemoExoticComponent<({
304
+ className,
305
+ ...props
306
+ }: MessageResponseProps) => _$react_jsx_runtime0.JSX.Element>;
307
+ type MessageToolbarProps = ComponentProps<'div'>;
308
+ declare const MessageToolbar: ({
309
+ className,
310
+ children,
311
+ ...props
312
+ }: MessageToolbarProps) => _$react_jsx_runtime0.JSX.Element;
313
+ //#endregion
314
+ //#region src/components/dialog.d.ts
315
+ declare function Dialog({
316
+ ...props
317
+ }: React$1.ComponentProps<typeof Dialog$1.Root>): _$react_jsx_runtime0.JSX.Element;
318
+ declare function DialogTrigger({
319
+ ...props
320
+ }: React$1.ComponentProps<typeof Dialog$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
321
+ declare function DialogPortal({
322
+ ...props
323
+ }: React$1.ComponentProps<typeof Dialog$1.Portal>): _$react_jsx_runtime0.JSX.Element;
324
+ declare function DialogClose({
325
+ ...props
326
+ }: React$1.ComponentProps<typeof Dialog$1.Close>): _$react_jsx_runtime0.JSX.Element;
327
+ declare function DialogOverlay({
328
+ className,
329
+ ...props
330
+ }: React$1.ComponentProps<typeof Dialog$1.Overlay>): _$react_jsx_runtime0.JSX.Element;
331
+ declare function DialogContent({
332
+ className,
333
+ children,
334
+ showCloseButton,
335
+ ...props
336
+ }: React$1.ComponentProps<typeof Dialog$1.Content> & {
337
+ showCloseButton?: boolean;
338
+ }): _$react_jsx_runtime0.JSX.Element;
339
+ declare function DialogHeader({
340
+ className,
341
+ ...props
342
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
343
+ declare function DialogFooter({
344
+ className,
345
+ showCloseButton,
346
+ children,
347
+ ...props
348
+ }: React$1.ComponentProps<'div'> & {
349
+ showCloseButton?: boolean;
350
+ }): _$react_jsx_runtime0.JSX.Element;
351
+ declare function DialogTitle({
352
+ className,
353
+ ...props
354
+ }: React$1.ComponentProps<typeof Dialog$1.Title>): _$react_jsx_runtime0.JSX.Element;
355
+ declare function DialogDescription({
356
+ className,
357
+ ...props
358
+ }: React$1.ComponentProps<typeof Dialog$1.Description>): _$react_jsx_runtime0.JSX.Element;
359
+ //#endregion
360
+ //#region src/components/command.d.ts
361
+ declare function Command({
362
+ className,
363
+ ...props
364
+ }: React$1.ComponentProps<typeof Command$1>): _$react_jsx_runtime0.JSX.Element;
365
+ declare function CommandDialog({
366
+ title,
367
+ description,
368
+ children,
369
+ className,
370
+ showCloseButton,
371
+ ...props
372
+ }: React$1.ComponentProps<typeof Dialog> & {
373
+ title?: string;
374
+ description?: string;
375
+ className?: string;
376
+ showCloseButton?: boolean;
377
+ }): _$react_jsx_runtime0.JSX.Element;
378
+ declare function CommandInput({
379
+ className,
380
+ ...props
381
+ }: React$1.ComponentProps<typeof Command$1.Input>): _$react_jsx_runtime0.JSX.Element;
382
+ declare function CommandList({
383
+ className,
384
+ ...props
385
+ }: React$1.ComponentProps<typeof Command$1.List>): _$react_jsx_runtime0.JSX.Element;
386
+ declare function CommandEmpty({
387
+ className,
388
+ ...props
389
+ }: React$1.ComponentProps<typeof Command$1.Empty>): _$react_jsx_runtime0.JSX.Element;
390
+ declare function CommandGroup({
391
+ className,
392
+ ...props
393
+ }: React$1.ComponentProps<typeof Command$1.Group>): _$react_jsx_runtime0.JSX.Element;
394
+ declare function CommandSeparator({
395
+ className,
396
+ ...props
397
+ }: React$1.ComponentProps<typeof Command$1.Separator>): _$react_jsx_runtime0.JSX.Element;
398
+ declare function CommandItem({
399
+ className,
400
+ children,
401
+ ...props
402
+ }: React$1.ComponentProps<typeof Command$1.Item>): _$react_jsx_runtime0.JSX.Element;
403
+ declare function CommandShortcut({
404
+ className,
405
+ ...props
406
+ }: React$1.ComponentProps<'span'>): _$react_jsx_runtime0.JSX.Element;
407
+ //#endregion
408
+ //#region src/components/dropdown-menu.d.ts
409
+ declare function DropdownMenu({
410
+ ...props
411
+ }: React$1.ComponentProps<typeof DropdownMenu$1.Root>): _$react_jsx_runtime0.JSX.Element;
412
+ declare function DropdownMenuPortal({
413
+ ...props
414
+ }: React$1.ComponentProps<typeof DropdownMenu$1.Portal>): _$react_jsx_runtime0.JSX.Element;
415
+ declare function DropdownMenuTrigger({
416
+ ...props
417
+ }: React$1.ComponentProps<typeof DropdownMenu$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
418
+ declare function DropdownMenuContent({
419
+ className,
420
+ align,
421
+ sideOffset,
422
+ container,
423
+ ...props
424
+ }: React$1.ComponentProps<typeof DropdownMenu$1.Content> & {
425
+ container?: HTMLDivElement | null;
426
+ }): _$react_jsx_runtime0.JSX.Element;
427
+ declare function DropdownMenuGroup({
428
+ ...props
429
+ }: React$1.ComponentProps<typeof DropdownMenu$1.Group>): _$react_jsx_runtime0.JSX.Element;
430
+ declare function DropdownMenuItem({
431
+ className,
432
+ inset,
433
+ variant,
434
+ ...props
435
+ }: React$1.ComponentProps<typeof DropdownMenu$1.Item> & {
436
+ inset?: boolean;
437
+ variant?: 'default' | 'destructive';
438
+ }): _$react_jsx_runtime0.JSX.Element;
439
+ declare function DropdownMenuCheckboxItem({
440
+ className,
441
+ children,
442
+ checked,
443
+ inset,
444
+ ...props
445
+ }: React$1.ComponentProps<typeof DropdownMenu$1.CheckboxItem> & {
446
+ inset?: boolean;
447
+ }): _$react_jsx_runtime0.JSX.Element;
448
+ declare function DropdownMenuRadioGroup({
449
+ ...props
450
+ }: React$1.ComponentProps<typeof DropdownMenu$1.RadioGroup>): _$react_jsx_runtime0.JSX.Element;
451
+ declare function DropdownMenuRadioItem({
452
+ className,
453
+ children,
454
+ inset,
455
+ ...props
456
+ }: React$1.ComponentProps<typeof DropdownMenu$1.RadioItem> & {
457
+ inset?: boolean;
458
+ }): _$react_jsx_runtime0.JSX.Element;
459
+ declare function DropdownMenuLabel({
460
+ className,
461
+ inset,
462
+ ...props
463
+ }: React$1.ComponentProps<typeof DropdownMenu$1.Label> & {
464
+ inset?: boolean;
465
+ }): _$react_jsx_runtime0.JSX.Element;
466
+ declare function DropdownMenuSeparator({
467
+ className,
468
+ ...props
469
+ }: React$1.ComponentProps<typeof DropdownMenu$1.Separator>): _$react_jsx_runtime0.JSX.Element;
470
+ declare function DropdownMenuShortcut({
471
+ className,
472
+ ...props
473
+ }: React$1.ComponentProps<'span'>): _$react_jsx_runtime0.JSX.Element;
474
+ declare function DropdownMenuSub({
475
+ ...props
476
+ }: React$1.ComponentProps<typeof DropdownMenu$1.Sub>): _$react_jsx_runtime0.JSX.Element;
477
+ declare function DropdownMenuSubTrigger({
478
+ className,
479
+ inset,
480
+ children,
481
+ ...props
482
+ }: React$1.ComponentProps<typeof DropdownMenu$1.SubTrigger> & {
483
+ inset?: boolean;
484
+ }): _$react_jsx_runtime0.JSX.Element;
485
+ declare function DropdownMenuSubContent({
486
+ className,
487
+ ...props
488
+ }: React$1.ComponentProps<typeof DropdownMenu$1.SubContent>): _$react_jsx_runtime0.JSX.Element;
489
+ //#endregion
490
+ //#region src/components/input-group.d.ts
491
+ declare function InputGroup({
492
+ className,
493
+ ...props
494
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
495
+ declare const inputGroupAddonVariants: (props?: ({
496
+ align?: "inline-start" | "inline-end" | "block-start" | "block-end" | null | undefined;
497
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
498
+ declare function InputGroupAddon({
499
+ className,
500
+ align,
501
+ ...props
502
+ }: React$1.ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): _$react_jsx_runtime0.JSX.Element;
503
+ declare const inputGroupButtonVariants: (props?: ({
504
+ size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
505
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
506
+ declare function InputGroupButton({
507
+ className,
508
+ type,
509
+ variant,
510
+ size,
511
+ ...props
512
+ }: Omit<React$1.ComponentProps<typeof Button>, 'size'> & VariantProps<typeof inputGroupButtonVariants>): _$react_jsx_runtime0.JSX.Element;
513
+ declare function InputGroupText({
514
+ className,
515
+ ...props
516
+ }: React$1.ComponentProps<'span'>): _$react_jsx_runtime0.JSX.Element;
517
+ declare function InputGroupInput({
518
+ className,
519
+ ...props
520
+ }: React$1.ComponentProps<'input'>): _$react_jsx_runtime0.JSX.Element;
521
+ declare function InputGroupTextarea({
522
+ className,
523
+ ...props
524
+ }: React$1.ComponentProps<'textarea'>): _$react_jsx_runtime0.JSX.Element;
525
+ //#endregion
526
+ //#region src/components/select.d.ts
527
+ declare function Select({
528
+ ...props
529
+ }: React$1.ComponentProps<typeof Select$1.Root>): _$react_jsx_runtime0.JSX.Element;
530
+ declare function SelectGroup({
531
+ className,
532
+ ...props
533
+ }: React$1.ComponentProps<typeof Select$1.Group>): _$react_jsx_runtime0.JSX.Element;
534
+ declare function SelectValue({
535
+ ...props
536
+ }: React$1.ComponentProps<typeof Select$1.Value>): _$react_jsx_runtime0.JSX.Element;
537
+ declare function SelectTrigger({
538
+ className,
539
+ size,
540
+ children,
541
+ ...props
542
+ }: React$1.ComponentProps<typeof Select$1.Trigger> & {
543
+ size?: 'sm' | 'default';
544
+ }): _$react_jsx_runtime0.JSX.Element;
545
+ declare function SelectContent({
546
+ className,
547
+ children,
548
+ position,
549
+ align,
550
+ ...props
551
+ }: React$1.ComponentProps<typeof Select$1.Content>): _$react_jsx_runtime0.JSX.Element;
552
+ declare function SelectLabel({
553
+ className,
554
+ ...props
555
+ }: React$1.ComponentProps<typeof Select$1.Label>): _$react_jsx_runtime0.JSX.Element;
556
+ declare function SelectItem({
557
+ className,
558
+ children,
559
+ ...props
560
+ }: React$1.ComponentProps<typeof Select$1.Item>): _$react_jsx_runtime0.JSX.Element;
561
+ declare function SelectSeparator({
562
+ className,
563
+ ...props
564
+ }: React$1.ComponentProps<typeof Select$1.Separator>): _$react_jsx_runtime0.JSX.Element;
565
+ declare function SelectScrollUpButton({
566
+ className,
567
+ ...props
568
+ }: React$1.ComponentProps<typeof Select$1.ScrollUpButton>): _$react_jsx_runtime0.JSX.Element;
569
+ declare function SelectScrollDownButton({
570
+ className,
571
+ ...props
572
+ }: React$1.ComponentProps<typeof Select$1.ScrollDownButton>): _$react_jsx_runtime0.JSX.Element;
573
+ //#endregion
574
+ //#region src/components/tooltip.d.ts
575
+ declare function TooltipProvider({
576
+ delayDuration,
577
+ ...props
578
+ }: React$1.ComponentProps<typeof Tooltip$1.Provider>): _$react_jsx_runtime0.JSX.Element;
579
+ declare function Tooltip({
580
+ ...props
581
+ }: React$1.ComponentProps<typeof Tooltip$1.Root>): _$react_jsx_runtime0.JSX.Element;
582
+ declare function TooltipTrigger({
583
+ ...props
584
+ }: React$1.ComponentProps<typeof Tooltip$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
585
+ declare function TooltipContent({
586
+ className,
587
+ sideOffset,
588
+ children,
589
+ ...props
590
+ }: React$1.ComponentProps<typeof Tooltip$1.Content>): _$react_jsx_runtime0.JSX.Element;
591
+ //#endregion
592
+ //#region src/components/ai-elements/prompt-input.d.ts
593
+ interface AttachmentsContext {
594
+ files: (FileUIPart & {
595
+ id: string;
596
+ })[];
597
+ add: (files: File[] | FileList) => void;
598
+ remove: (id: string) => void;
599
+ clear: () => void;
600
+ openFileDialog: () => void;
601
+ fileInputRef: RefObject<HTMLInputElement | null>;
602
+ }
603
+ interface TextInputContext {
604
+ value: string;
605
+ setInput: (v: string) => void;
606
+ clear: () => void;
607
+ }
608
+ interface PromptInputControllerProps {
609
+ textInput: TextInputContext;
610
+ attachments: AttachmentsContext;
611
+ /** INTERNAL: Allows PromptInput to register its file textInput + "open" callback */
612
+ __registerFileInput: (ref: RefObject<HTMLInputElement | null>, open: () => void) => void;
613
+ }
614
+ declare const usePromptInputController: () => PromptInputControllerProps;
615
+ declare const useProviderAttachments: () => AttachmentsContext;
616
+ type PromptInputProviderProps = PropsWithChildren<{
617
+ initialInput?: string;
618
+ }>;
619
+ /**
620
+ * Optional global provider that lifts PromptInput state outside of PromptInput.
621
+ * If you don't use it, PromptInput stays fully self-managed.
622
+ */
623
+ declare const PromptInputProvider: ({
624
+ initialInput: initialTextInput,
625
+ children
626
+ }: PromptInputProviderProps) => _$react_jsx_runtime0.JSX.Element;
627
+ declare const usePromptInputAttachments: () => AttachmentsContext;
628
+ interface ReferencedSourcesContext {
629
+ sources: (SourceDocumentUIPart & {
630
+ id: string;
631
+ })[];
632
+ add: (sources: SourceDocumentUIPart[] | SourceDocumentUIPart) => void;
633
+ remove: (id: string) => void;
634
+ clear: () => void;
635
+ }
636
+ declare const LocalReferencedSourcesContext: React$1.Context<ReferencedSourcesContext | null>;
637
+ declare const usePromptInputReferencedSources: () => ReferencedSourcesContext;
638
+ type PromptInputActionAddAttachmentsProps = ComponentProps<typeof DropdownMenuItem> & {
639
+ label?: string;
640
+ };
641
+ declare const PromptInputActionAddAttachments: ({
642
+ label,
643
+ ...props
644
+ }: PromptInputActionAddAttachmentsProps) => _$react_jsx_runtime0.JSX.Element;
645
+ type PromptInputActionAddScreenshotProps = ComponentProps<typeof DropdownMenuItem> & {
646
+ label?: string;
647
+ };
648
+ declare const PromptInputActionAddScreenshot: ({
649
+ label,
650
+ onSelect,
651
+ ...props
652
+ }: PromptInputActionAddScreenshotProps) => _$react_jsx_runtime0.JSX.Element;
653
+ interface PromptInputMessage {
654
+ text: string;
655
+ files: FileUIPart[];
656
+ }
657
+ type PromptInputProps = Omit<HTMLAttributes<HTMLFormElement>, 'onSubmit' | 'onError'> & {
658
+ accept?: string;
659
+ multiple?: boolean;
660
+ globalDrop?: boolean;
661
+ syncHiddenInput?: boolean;
662
+ maxFiles?: number;
663
+ maxFileSize?: number;
664
+ onError?: (err: {
665
+ code: 'max_files' | 'max_file_size' | 'accept';
666
+ message: string;
667
+ }) => void;
668
+ onSubmit: (message: PromptInputMessage, event: FormEvent<HTMLFormElement>) => void | Promise<void>;
669
+ };
670
+ declare const PromptInput: ({
671
+ className,
672
+ groupClassName,
673
+ accept,
674
+ multiple,
675
+ globalDrop,
676
+ syncHiddenInput,
677
+ maxFiles,
678
+ maxFileSize,
679
+ onError,
680
+ onSubmit,
681
+ children,
682
+ ...props
683
+ }: PromptInputProps & {
684
+ groupClassName?: string;
685
+ }) => _$react_jsx_runtime0.JSX.Element;
686
+ type PromptInputBodyProps = HTMLAttributes<HTMLDivElement>;
687
+ declare const PromptInputBody: ({
688
+ className,
689
+ ...props
690
+ }: PromptInputBodyProps) => _$react_jsx_runtime0.JSX.Element;
691
+ type PromptInputTextareaProps = ComponentProps<typeof InputGroupTextarea>;
692
+ declare const PromptInputTextarea: ({
693
+ onChange,
694
+ onKeyDown,
695
+ className,
696
+ placeholder,
697
+ ...props
698
+ }: PromptInputTextareaProps) => _$react_jsx_runtime0.JSX.Element;
699
+ type PromptInputHeaderProps = Omit<ComponentProps<typeof InputGroupAddon>, 'align'>;
700
+ declare const PromptInputHeader: ({
701
+ className,
702
+ ...props
703
+ }: PromptInputHeaderProps) => _$react_jsx_runtime0.JSX.Element;
704
+ type PromptInputFooterProps = Omit<ComponentProps<typeof InputGroupAddon>, 'align'>;
705
+ declare const PromptInputFooter: ({
706
+ className,
707
+ ...props
708
+ }: PromptInputFooterProps) => _$react_jsx_runtime0.JSX.Element;
709
+ type PromptInputToolsProps = HTMLAttributes<HTMLDivElement>;
710
+ declare const PromptInputTools: ({
711
+ className,
712
+ ...props
713
+ }: PromptInputToolsProps) => _$react_jsx_runtime0.JSX.Element;
714
+ type PromptInputButtonTooltip = string | {
715
+ content: ReactNode;
716
+ shortcut?: string;
717
+ side?: ComponentProps<typeof TooltipContent>['side'];
718
+ };
719
+ type PromptInputButtonProps = ComponentProps<typeof InputGroupButton> & {
720
+ tooltip?: PromptInputButtonTooltip;
721
+ };
722
+ declare const PromptInputButton: ({
723
+ variant,
724
+ className,
725
+ size,
726
+ tooltip,
727
+ ...props
728
+ }: PromptInputButtonProps) => _$react_jsx_runtime0.JSX.Element;
729
+ type PromptInputActionMenuProps = ComponentProps<typeof DropdownMenu>;
730
+ declare const PromptInputActionMenu: (props: PromptInputActionMenuProps) => _$react_jsx_runtime0.JSX.Element;
731
+ type PromptInputActionMenuTriggerProps = PromptInputButtonProps;
732
+ declare const PromptInputActionMenuTrigger: ({
733
+ className,
734
+ children,
735
+ ...props
736
+ }: PromptInputActionMenuTriggerProps) => _$react_jsx_runtime0.JSX.Element;
737
+ type PromptInputActionMenuContentProps = ComponentProps<typeof DropdownMenuContent>;
738
+ declare const PromptInputActionMenuContent: ({
739
+ className,
740
+ ...props
741
+ }: PromptInputActionMenuContentProps) => _$react_jsx_runtime0.JSX.Element;
742
+ type PromptInputActionMenuItemProps = ComponentProps<typeof DropdownMenuItem>;
743
+ declare const PromptInputActionMenuItem: ({
744
+ className,
745
+ ...props
746
+ }: PromptInputActionMenuItemProps) => _$react_jsx_runtime0.JSX.Element;
747
+ type PromptInputSubmitProps = ComponentProps<typeof InputGroupButton> & {
748
+ status?: ChatStatus;
749
+ onStop?: () => void;
750
+ };
751
+ declare const PromptInputSubmit: ({
752
+ className,
753
+ variant,
754
+ size,
755
+ status,
756
+ onStop,
757
+ onClick,
758
+ children,
759
+ ...props
760
+ }: PromptInputSubmitProps) => _$react_jsx_runtime0.JSX.Element;
761
+ type PromptInputSelectProps = ComponentProps<typeof Select>;
762
+ declare const PromptInputSelect: (props: PromptInputSelectProps) => _$react_jsx_runtime0.JSX.Element;
763
+ type PromptInputSelectTriggerProps = ComponentProps<typeof SelectTrigger>;
764
+ declare const PromptInputSelectTrigger: ({
765
+ className,
766
+ ...props
767
+ }: PromptInputSelectTriggerProps) => _$react_jsx_runtime0.JSX.Element;
768
+ type PromptInputSelectContentProps = ComponentProps<typeof SelectContent>;
769
+ declare const PromptInputSelectContent: ({
770
+ className,
771
+ ...props
772
+ }: PromptInputSelectContentProps) => _$react_jsx_runtime0.JSX.Element;
773
+ type PromptInputSelectItemProps = ComponentProps<typeof SelectItem>;
774
+ declare const PromptInputSelectItem: ({
775
+ className,
776
+ ...props
777
+ }: PromptInputSelectItemProps) => _$react_jsx_runtime0.JSX.Element;
778
+ type PromptInputSelectValueProps = ComponentProps<typeof SelectValue>;
779
+ declare const PromptInputSelectValue: ({
780
+ className,
781
+ ...props
782
+ }: PromptInputSelectValueProps) => _$react_jsx_runtime0.JSX.Element;
783
+ type PromptInputHoverCardProps = ComponentProps<typeof HoverCard>;
784
+ declare const PromptInputHoverCard: ({
785
+ openDelay,
786
+ closeDelay,
787
+ ...props
788
+ }: PromptInputHoverCardProps) => _$react_jsx_runtime0.JSX.Element;
789
+ type PromptInputHoverCardTriggerProps = ComponentProps<typeof HoverCardTrigger>;
790
+ declare const PromptInputHoverCardTrigger: (props: PromptInputHoverCardTriggerProps) => _$react_jsx_runtime0.JSX.Element;
791
+ type PromptInputHoverCardContentProps = ComponentProps<typeof HoverCardContent>;
792
+ declare const PromptInputHoverCardContent: ({
793
+ align,
794
+ ...props
795
+ }: PromptInputHoverCardContentProps) => _$react_jsx_runtime0.JSX.Element;
796
+ type PromptInputTabsListProps = HTMLAttributes<HTMLDivElement>;
797
+ declare const PromptInputTabsList: ({
798
+ className,
799
+ ...props
800
+ }: PromptInputTabsListProps) => _$react_jsx_runtime0.JSX.Element;
801
+ type PromptInputTabProps = HTMLAttributes<HTMLDivElement>;
802
+ declare const PromptInputTab: ({
803
+ className,
804
+ ...props
805
+ }: PromptInputTabProps) => _$react_jsx_runtime0.JSX.Element;
806
+ type PromptInputTabLabelProps = HTMLAttributes<HTMLHeadingElement>;
807
+ declare const PromptInputTabLabel: ({
808
+ className,
809
+ ...props
810
+ }: PromptInputTabLabelProps) => _$react_jsx_runtime0.JSX.Element;
811
+ type PromptInputTabBodyProps = HTMLAttributes<HTMLDivElement>;
812
+ declare const PromptInputTabBody: ({
813
+ className,
814
+ ...props
815
+ }: PromptInputTabBodyProps) => _$react_jsx_runtime0.JSX.Element;
816
+ type PromptInputTabItemProps = HTMLAttributes<HTMLDivElement>;
817
+ declare const PromptInputTabItem: ({
818
+ className,
819
+ ...props
820
+ }: PromptInputTabItemProps) => _$react_jsx_runtime0.JSX.Element;
821
+ type PromptInputCommandProps = ComponentProps<typeof Command>;
822
+ declare const PromptInputCommand: ({
823
+ className,
824
+ ...props
825
+ }: PromptInputCommandProps) => _$react_jsx_runtime0.JSX.Element;
826
+ type PromptInputCommandInputProps = ComponentProps<typeof CommandInput>;
827
+ declare const PromptInputCommandInput: ({
828
+ className,
829
+ ...props
830
+ }: PromptInputCommandInputProps) => _$react_jsx_runtime0.JSX.Element;
831
+ type PromptInputCommandListProps = ComponentProps<typeof CommandList>;
832
+ declare const PromptInputCommandList: ({
833
+ className,
834
+ ...props
835
+ }: PromptInputCommandListProps) => _$react_jsx_runtime0.JSX.Element;
836
+ type PromptInputCommandEmptyProps = ComponentProps<typeof CommandEmpty>;
837
+ declare const PromptInputCommandEmpty: ({
838
+ className,
839
+ ...props
840
+ }: PromptInputCommandEmptyProps) => _$react_jsx_runtime0.JSX.Element;
841
+ type PromptInputCommandGroupProps = ComponentProps<typeof CommandGroup>;
842
+ declare const PromptInputCommandGroup: ({
843
+ className,
844
+ ...props
845
+ }: PromptInputCommandGroupProps) => _$react_jsx_runtime0.JSX.Element;
846
+ type PromptInputCommandItemProps = ComponentProps<typeof CommandItem>;
847
+ declare const PromptInputCommandItem: ({
848
+ className,
849
+ ...props
850
+ }: PromptInputCommandItemProps) => _$react_jsx_runtime0.JSX.Element;
851
+ type PromptInputCommandSeparatorProps = ComponentProps<typeof CommandSeparator>;
852
+ declare const PromptInputCommandSeparator: ({
853
+ className,
854
+ ...props
855
+ }: PromptInputCommandSeparatorProps) => _$react_jsx_runtime0.JSX.Element;
856
+ //#endregion
857
+ //#region src/components/ai-elements/speech-input.d.ts
858
+ interface SpeechRecognition extends EventTarget {
859
+ continuous: boolean;
860
+ interimResults: boolean;
861
+ lang: string;
862
+ start(): void;
863
+ stop(): void;
864
+ onstart: ((this: SpeechRecognition, ev: Event) => void) | null;
865
+ onend: ((this: SpeechRecognition, ev: Event) => void) | null;
866
+ onresult: ((this: SpeechRecognition, ev: SpeechRecognitionEvent) => void) | null;
867
+ onerror: ((this: SpeechRecognition, ev: SpeechRecognitionErrorEvent) => void) | null;
868
+ }
869
+ interface SpeechRecognitionEvent extends Event {
870
+ results: SpeechRecognitionResultList;
871
+ resultIndex: number;
872
+ }
873
+ interface SpeechRecognitionResultList {
874
+ readonly length: number;
875
+ item(index: number): SpeechRecognitionResult;
876
+ [index: number]: SpeechRecognitionResult;
877
+ }
878
+ interface SpeechRecognitionResult {
879
+ readonly length: number;
880
+ item(index: number): SpeechRecognitionAlternative;
881
+ [index: number]: SpeechRecognitionAlternative;
882
+ isFinal: boolean;
883
+ }
884
+ interface SpeechRecognitionAlternative {
885
+ transcript: string;
886
+ confidence: number;
887
+ }
888
+ interface SpeechRecognitionErrorEvent extends Event {
889
+ error: string;
890
+ }
891
+ declare global {
892
+ interface Window {
893
+ SpeechRecognition: new () => SpeechRecognition;
894
+ webkitSpeechRecognition: new () => SpeechRecognition;
895
+ }
896
+ }
897
+ type SpeechInputProps = ComponentProps<typeof Button> & {
898
+ onTranscriptionChange?: (text: string) => void;
899
+ /**
900
+ * Callback for when audio is recorded using MediaRecorder fallback.
901
+ * This is called in browsers that don't support the Web Speech API (Firefox, Safari).
902
+ * The callback receives an audio Blob that should be sent to a transcription service.
903
+ * Return the transcribed text, which will be passed to onTranscriptionChange.
904
+ */
905
+ onAudioRecorded?: (audioBlob: Blob) => Promise<string>;
906
+ lang?: string;
907
+ };
908
+ declare const SpeechInput: ({
909
+ className,
910
+ onTranscriptionChange,
911
+ onAudioRecorded,
912
+ lang,
913
+ ...props
914
+ }: SpeechInputProps) => _$react_jsx_runtime0.JSX.Element;
915
+ //#endregion
916
+ //#region src/components/alert.d.ts
917
+ declare const alertVariants: (props?: ({
918
+ variant?: "default" | "destructive" | null | undefined;
919
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
920
+ declare function Alert({
921
+ className,
922
+ variant,
923
+ ...props
924
+ }: React$1.ComponentProps<'div'> & VariantProps<typeof alertVariants>): _$react_jsx_runtime0.JSX.Element;
925
+ declare function AlertTitle({
926
+ className,
927
+ ...props
928
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
929
+ declare function AlertDescription({
930
+ className,
931
+ ...props
932
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
933
+ declare function AlertAction({
934
+ className,
935
+ ...props
936
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
937
+ //#endregion
938
+ //#region src/components/alert-dialog.d.ts
939
+ declare function AlertDialog({
940
+ ...props
941
+ }: React$1.ComponentProps<typeof AlertDialog$1.Root>): _$react_jsx_runtime0.JSX.Element;
942
+ declare function AlertDialogTrigger({
943
+ ...props
944
+ }: React$1.ComponentProps<typeof AlertDialog$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
945
+ declare function AlertDialogPortal({
946
+ ...props
947
+ }: React$1.ComponentProps<typeof AlertDialog$1.Portal>): _$react_jsx_runtime0.JSX.Element;
948
+ declare function AlertDialogOverlay({
949
+ className,
950
+ ...props
951
+ }: React$1.ComponentProps<typeof AlertDialog$1.Overlay>): _$react_jsx_runtime0.JSX.Element;
952
+ declare function AlertDialogContent({
953
+ className,
954
+ size,
955
+ ...props
956
+ }: React$1.ComponentProps<typeof AlertDialog$1.Content> & {
957
+ size?: 'default' | 'sm';
958
+ }): _$react_jsx_runtime0.JSX.Element;
959
+ declare function AlertDialogHeader({
960
+ className,
961
+ ...props
962
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
963
+ declare function AlertDialogFooter({
964
+ className,
965
+ ...props
966
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
967
+ declare function AlertDialogMedia({
968
+ className,
969
+ ...props
970
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
971
+ declare function AlertDialogTitle({
972
+ className,
973
+ ...props
974
+ }: React$1.ComponentProps<typeof AlertDialog$1.Title>): _$react_jsx_runtime0.JSX.Element;
975
+ declare function AlertDialogDescription({
976
+ className,
977
+ ...props
978
+ }: React$1.ComponentProps<typeof AlertDialog$1.Description>): _$react_jsx_runtime0.JSX.Element;
979
+ declare function AlertDialogAction({
980
+ className,
981
+ variant,
982
+ size,
983
+ ...props
984
+ }: React$1.ComponentProps<typeof AlertDialog$1.Action> & Pick<React$1.ComponentProps<typeof Button>, 'variant' | 'size'>): _$react_jsx_runtime0.JSX.Element;
985
+ declare function AlertDialogCancel({
986
+ className,
987
+ variant,
988
+ size,
989
+ ...props
990
+ }: React$1.ComponentProps<typeof AlertDialog$1.Cancel> & Pick<React$1.ComponentProps<typeof Button>, 'variant' | 'size'>): _$react_jsx_runtime0.JSX.Element;
991
+ //#endregion
992
+ //#region src/components/aspect-ratio.d.ts
993
+ declare function AspectRatio({
994
+ ...props
995
+ }: React.ComponentProps<typeof AspectRatio$1.Root>): _$react_jsx_runtime0.JSX.Element;
996
+ //#endregion
997
+ //#region src/components/avatar.d.ts
998
+ declare function Avatar({
999
+ className,
1000
+ size,
1001
+ ...props
1002
+ }: React$1.ComponentProps<typeof Avatar$1.Root> & {
1003
+ size?: 'default' | 'sm' | 'lg';
1004
+ }): _$react_jsx_runtime0.JSX.Element;
1005
+ declare function AvatarImage({
1006
+ className,
1007
+ ...props
1008
+ }: React$1.ComponentProps<typeof Avatar$1.Image>): _$react_jsx_runtime0.JSX.Element;
1009
+ declare function AvatarFallback({
1010
+ className,
1011
+ ...props
1012
+ }: React$1.ComponentProps<typeof Avatar$1.Fallback>): _$react_jsx_runtime0.JSX.Element;
1013
+ declare function AvatarBadge({
1014
+ className,
1015
+ ...props
1016
+ }: React$1.ComponentProps<'span'>): _$react_jsx_runtime0.JSX.Element;
1017
+ declare function AvatarGroup({
1018
+ className,
1019
+ ...props
1020
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1021
+ declare function AvatarGroupCount({
1022
+ className,
1023
+ ...props
1024
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1025
+ //#endregion
1026
+ //#region src/components/badge.d.ts
1027
+ declare const badgeVariants: (props?: ({
1028
+ variant?: "link" | "default" | "outline" | "secondary" | "ghost" | "destructive" | null | undefined;
1029
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
1030
+ declare function Badge({
1031
+ className,
1032
+ variant,
1033
+ asChild,
1034
+ ...props
1035
+ }: React$1.ComponentProps<'span'> & VariantProps<typeof badgeVariants> & {
1036
+ asChild?: boolean;
1037
+ }): _$react_jsx_runtime0.JSX.Element;
1038
+ //#endregion
1039
+ //#region src/components/breadcrumb.d.ts
1040
+ declare function Breadcrumb({
1041
+ className,
1042
+ ...props
1043
+ }: React$1.ComponentProps<'nav'>): _$react_jsx_runtime0.JSX.Element;
1044
+ declare function BreadcrumbList({
1045
+ className,
1046
+ ...props
1047
+ }: React$1.ComponentProps<'ol'>): _$react_jsx_runtime0.JSX.Element;
1048
+ declare function BreadcrumbItem({
1049
+ className,
1050
+ ...props
1051
+ }: React$1.ComponentProps<'li'>): _$react_jsx_runtime0.JSX.Element;
1052
+ declare function BreadcrumbLink({
1053
+ asChild,
1054
+ className,
1055
+ ...props
1056
+ }: React$1.ComponentProps<'a'> & {
1057
+ asChild?: boolean;
1058
+ }): _$react_jsx_runtime0.JSX.Element;
1059
+ declare function BreadcrumbPage({
1060
+ className,
1061
+ ...props
1062
+ }: React$1.ComponentProps<'span'>): _$react_jsx_runtime0.JSX.Element;
1063
+ declare function BreadcrumbSeparator({
1064
+ children,
1065
+ className,
1066
+ ...props
1067
+ }: React$1.ComponentProps<'li'>): _$react_jsx_runtime0.JSX.Element;
1068
+ declare function BreadcrumbEllipsis({
1069
+ className,
1070
+ ...props
1071
+ }: React$1.ComponentProps<'span'>): _$react_jsx_runtime0.JSX.Element;
1072
+ //#endregion
1073
+ //#region src/components/calendar.d.ts
1074
+ declare function Calendar({
1075
+ className,
1076
+ classNames,
1077
+ showOutsideDays,
1078
+ captionLayout,
1079
+ buttonVariant,
1080
+ locale,
1081
+ formatters,
1082
+ components,
1083
+ ...props
1084
+ }: React$1.ComponentProps<typeof DayPicker> & {
1085
+ buttonVariant?: React$1.ComponentProps<typeof Button>['variant'];
1086
+ }): _$react_jsx_runtime0.JSX.Element;
1087
+ declare function CalendarDayButton({
1088
+ className,
1089
+ day,
1090
+ modifiers,
1091
+ locale,
1092
+ ...props
1093
+ }: React$1.ComponentProps<typeof DayButton> & {
1094
+ locale?: Partial<Locale>;
1095
+ }): _$react_jsx_runtime0.JSX.Element;
1096
+ //#endregion
1097
+ //#region src/components/card.d.ts
1098
+ declare function Card({
1099
+ className,
1100
+ size,
1101
+ ...props
1102
+ }: React$1.ComponentProps<'div'> & {
1103
+ size?: 'default' | 'sm';
1104
+ }): _$react_jsx_runtime0.JSX.Element;
1105
+ declare function CardHeader({
1106
+ className,
1107
+ ...props
1108
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1109
+ declare function CardTitle({
1110
+ className,
1111
+ ...props
1112
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1113
+ declare function CardDescription({
1114
+ className,
1115
+ ...props
1116
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1117
+ declare function CardAction({
1118
+ className,
1119
+ ...props
1120
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1121
+ declare function CardContent({
1122
+ className,
1123
+ ...props
1124
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1125
+ declare function CardFooter({
1126
+ className,
1127
+ ...props
1128
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1129
+ //#endregion
1130
+ //#region src/components/carousel.d.ts
1131
+ type CarouselApi = UseEmblaCarouselType[1];
1132
+ type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
1133
+ type CarouselOptions = UseCarouselParameters[0];
1134
+ type CarouselPlugin = UseCarouselParameters[1];
1135
+ type CarouselProps = {
1136
+ opts?: CarouselOptions;
1137
+ plugins?: CarouselPlugin;
1138
+ orientation?: 'horizontal' | 'vertical';
1139
+ setApi?: (api: CarouselApi) => void;
1140
+ };
1141
+ type CarouselContextProps = {
1142
+ carouselRef: ReturnType<typeof useEmblaCarousel>[0];
1143
+ api: ReturnType<typeof useEmblaCarousel>[1];
1144
+ scrollPrev: () => void;
1145
+ scrollNext: () => void;
1146
+ canScrollPrev: boolean;
1147
+ canScrollNext: boolean;
1148
+ } & CarouselProps;
1149
+ declare function useCarousel(): CarouselContextProps;
1150
+ declare function Carousel({
1151
+ orientation,
1152
+ opts,
1153
+ setApi,
1154
+ plugins,
1155
+ className,
1156
+ children,
1157
+ ...props
1158
+ }: React$1.ComponentProps<'div'> & CarouselProps): _$react_jsx_runtime0.JSX.Element;
1159
+ declare function CarouselContent({
1160
+ className,
1161
+ ...props
1162
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1163
+ declare function CarouselItem({
1164
+ className,
1165
+ ...props
1166
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1167
+ declare function CarouselPrevious({
1168
+ className,
1169
+ variant,
1170
+ size,
1171
+ ...props
1172
+ }: React$1.ComponentProps<typeof Button>): _$react_jsx_runtime0.JSX.Element;
1173
+ declare function CarouselNext({
1174
+ className,
1175
+ variant,
1176
+ size,
1177
+ ...props
1178
+ }: React$1.ComponentProps<typeof Button>): _$react_jsx_runtime0.JSX.Element;
1179
+ //#endregion
1180
+ //#region src/components/chart.d.ts
1181
+ declare const THEMES: {
1182
+ readonly light: "";
1183
+ readonly dark: ".dark";
1184
+ };
1185
+ type TooltipNameType = number | string;
1186
+ type ChartConfig = Record<string, {
1187
+ label?: React$1.ReactNode;
1188
+ icon?: React$1.ComponentType;
1189
+ } & ({
1190
+ color?: string;
1191
+ theme?: never;
1192
+ } | {
1193
+ color?: never;
1194
+ theme: Record<keyof typeof THEMES, string>;
1195
+ })>;
1196
+ declare function ChartContainer({
1197
+ id,
1198
+ className,
1199
+ children,
1200
+ config,
1201
+ initialDimension,
1202
+ ...props
1203
+ }: React$1.ComponentProps<"div"> & {
1204
+ config: ChartConfig;
1205
+ children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
1206
+ initialDimension?: {
1207
+ width: number;
1208
+ height: number;
1209
+ };
1210
+ }): _$react_jsx_runtime0.JSX.Element;
1211
+ declare const ChartStyle: ({
1212
+ id,
1213
+ config
1214
+ }: {
1215
+ id: string;
1216
+ config: ChartConfig;
1217
+ }) => _$react_jsx_runtime0.JSX.Element | null;
1218
+ declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
1219
+ declare function ChartTooltipContent({
1220
+ active,
1221
+ payload,
1222
+ className,
1223
+ indicator,
1224
+ hideLabel,
1225
+ hideIndicator,
1226
+ label,
1227
+ labelFormatter,
1228
+ labelClassName,
1229
+ formatter,
1230
+ color,
1231
+ nameKey,
1232
+ labelKey
1233
+ }: React$1.ComponentProps<typeof RechartsPrimitive.Tooltip> & React$1.ComponentProps<"div"> & {
1234
+ hideLabel?: boolean;
1235
+ hideIndicator?: boolean;
1236
+ indicator?: "line" | "dot" | "dashed";
1237
+ nameKey?: string;
1238
+ labelKey?: string;
1239
+ } & Omit<RechartsPrimitive.DefaultTooltipContentProps<TooltipValueType, TooltipNameType>, "accessibilityLayer">): _$react_jsx_runtime0.JSX.Element | null;
1240
+ declare const ChartLegend: React$1.MemoExoticComponent<(outsideProps: RechartsPrimitive.LegendProps) => React$1.ReactPortal | null>;
1241
+ declare function ChartLegendContent({
1242
+ className,
1243
+ hideIcon,
1244
+ payload,
1245
+ verticalAlign,
1246
+ nameKey
1247
+ }: React$1.ComponentProps<"div"> & {
1248
+ hideIcon?: boolean;
1249
+ nameKey?: string;
1250
+ } & RechartsPrimitive.DefaultLegendContentProps): _$react_jsx_runtime0.JSX.Element | null;
1251
+ //#endregion
1252
+ //#region src/components/checkbox.d.ts
1253
+ declare function Checkbox({
1254
+ className,
1255
+ ...props
1256
+ }: React$1.ComponentProps<typeof Checkbox$1.Root>): _$react_jsx_runtime0.JSX.Element;
1257
+ //#endregion
1258
+ //#region src/components/collapsible.d.ts
1259
+ declare function Collapsible({
1260
+ ...props
1261
+ }: React.ComponentProps<typeof Collapsible$1.Root>): _$react_jsx_runtime0.JSX.Element;
1262
+ declare function CollapsibleTrigger({
1263
+ ...props
1264
+ }: React.ComponentProps<typeof Collapsible$1.CollapsibleTrigger>): _$react_jsx_runtime0.JSX.Element;
1265
+ declare function CollapsibleContent({
1266
+ ...props
1267
+ }: React.ComponentProps<typeof Collapsible$1.CollapsibleContent>): _$react_jsx_runtime0.JSX.Element;
1268
+ //#endregion
1269
+ //#region src/components/combobox.d.ts
1270
+ declare const Combobox: typeof Combobox$1.Root;
1271
+ declare function ComboboxValue({
1272
+ ...props
1273
+ }: Combobox$1.Value.Props): _$react_jsx_runtime0.JSX.Element;
1274
+ declare function ComboboxTrigger({
1275
+ className,
1276
+ children,
1277
+ ...props
1278
+ }: Combobox$1.Trigger.Props): _$react_jsx_runtime0.JSX.Element;
1279
+ declare function ComboboxInput({
1280
+ className,
1281
+ children,
1282
+ disabled,
1283
+ showTrigger,
1284
+ showClear,
1285
+ ...props
1286
+ }: Combobox$1.Input.Props & {
1287
+ showTrigger?: boolean;
1288
+ showClear?: boolean;
1289
+ }): _$react_jsx_runtime0.JSX.Element;
1290
+ declare function ComboboxContent({
1291
+ className,
1292
+ side,
1293
+ sideOffset,
1294
+ align,
1295
+ alignOffset,
1296
+ anchor,
1297
+ ...props
1298
+ }: Combobox$1.Popup.Props & Pick<Combobox$1.Positioner.Props, 'side' | 'align' | 'sideOffset' | 'alignOffset' | 'anchor'>): _$react_jsx_runtime0.JSX.Element;
1299
+ declare function ComboboxList({
1300
+ className,
1301
+ ...props
1302
+ }: Combobox$1.List.Props): _$react_jsx_runtime0.JSX.Element;
1303
+ declare function ComboboxItem({
1304
+ className,
1305
+ children,
1306
+ ...props
1307
+ }: Combobox$1.Item.Props): _$react_jsx_runtime0.JSX.Element;
1308
+ declare function ComboboxGroup({
1309
+ className,
1310
+ ...props
1311
+ }: Combobox$1.Group.Props): _$react_jsx_runtime0.JSX.Element;
1312
+ declare function ComboboxLabel({
1313
+ className,
1314
+ ...props
1315
+ }: Combobox$1.GroupLabel.Props): _$react_jsx_runtime0.JSX.Element;
1316
+ declare function ComboboxCollection({
1317
+ ...props
1318
+ }: Combobox$1.Collection.Props): _$react_jsx_runtime0.JSX.Element;
1319
+ declare function ComboboxEmpty({
1320
+ className,
1321
+ ...props
1322
+ }: Combobox$1.Empty.Props): _$react_jsx_runtime0.JSX.Element;
1323
+ declare function ComboboxSeparator({
1324
+ className,
1325
+ ...props
1326
+ }: Combobox$1.Separator.Props): _$react_jsx_runtime0.JSX.Element;
1327
+ declare function ComboboxChips({
1328
+ className,
1329
+ ...props
1330
+ }: React$1.ComponentPropsWithRef<typeof Combobox$1.Chips> & Combobox$1.Chips.Props): _$react_jsx_runtime0.JSX.Element;
1331
+ declare function ComboboxChip({
1332
+ className,
1333
+ children,
1334
+ showRemove,
1335
+ ...props
1336
+ }: Combobox$1.Chip.Props & {
1337
+ showRemove?: boolean;
1338
+ }): _$react_jsx_runtime0.JSX.Element;
1339
+ declare function ComboboxChipsInput({
1340
+ className,
1341
+ ...props
1342
+ }: Combobox$1.Input.Props): _$react_jsx_runtime0.JSX.Element;
1343
+ declare function useComboboxAnchor(): React$1.RefObject<HTMLDivElement | null>;
1344
+ //#endregion
1345
+ //#region src/components/context-menu.d.ts
1346
+ declare function ContextMenu({
1347
+ ...props
1348
+ }: React$1.ComponentProps<typeof ContextMenu$1.Root>): _$react_jsx_runtime0.JSX.Element;
1349
+ declare function ContextMenuTrigger({
1350
+ className,
1351
+ ...props
1352
+ }: React$1.ComponentProps<typeof ContextMenu$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
1353
+ declare function ContextMenuGroup({
1354
+ ...props
1355
+ }: React$1.ComponentProps<typeof ContextMenu$1.Group>): _$react_jsx_runtime0.JSX.Element;
1356
+ declare function ContextMenuPortal({
1357
+ ...props
1358
+ }: React$1.ComponentProps<typeof ContextMenu$1.Portal>): _$react_jsx_runtime0.JSX.Element;
1359
+ declare function ContextMenuSub({
1360
+ ...props
1361
+ }: React$1.ComponentProps<typeof ContextMenu$1.Sub>): _$react_jsx_runtime0.JSX.Element;
1362
+ declare function ContextMenuRadioGroup({
1363
+ ...props
1364
+ }: React$1.ComponentProps<typeof ContextMenu$1.RadioGroup>): _$react_jsx_runtime0.JSX.Element;
1365
+ declare function ContextMenuContent({
1366
+ className,
1367
+ ...props
1368
+ }: React$1.ComponentProps<typeof ContextMenu$1.Content> & {
1369
+ side?: 'top' | 'right' | 'bottom' | 'left';
1370
+ }): _$react_jsx_runtime0.JSX.Element;
1371
+ declare function ContextMenuItem({
1372
+ className,
1373
+ inset,
1374
+ variant,
1375
+ ...props
1376
+ }: React$1.ComponentProps<typeof ContextMenu$1.Item> & {
1377
+ inset?: boolean;
1378
+ variant?: 'default' | 'destructive';
1379
+ }): _$react_jsx_runtime0.JSX.Element;
1380
+ declare function ContextMenuSubTrigger({
1381
+ className,
1382
+ inset,
1383
+ children,
1384
+ ...props
1385
+ }: React$1.ComponentProps<typeof ContextMenu$1.SubTrigger> & {
1386
+ inset?: boolean;
1387
+ }): _$react_jsx_runtime0.JSX.Element;
1388
+ declare function ContextMenuSubContent({
1389
+ className,
1390
+ ...props
1391
+ }: React$1.ComponentProps<typeof ContextMenu$1.SubContent>): _$react_jsx_runtime0.JSX.Element;
1392
+ declare function ContextMenuCheckboxItem({
1393
+ className,
1394
+ children,
1395
+ checked,
1396
+ inset,
1397
+ ...props
1398
+ }: React$1.ComponentProps<typeof ContextMenu$1.CheckboxItem> & {
1399
+ inset?: boolean;
1400
+ }): _$react_jsx_runtime0.JSX.Element;
1401
+ declare function ContextMenuRadioItem({
1402
+ className,
1403
+ children,
1404
+ inset,
1405
+ ...props
1406
+ }: React$1.ComponentProps<typeof ContextMenu$1.RadioItem> & {
1407
+ inset?: boolean;
1408
+ }): _$react_jsx_runtime0.JSX.Element;
1409
+ declare function ContextMenuLabel({
1410
+ className,
1411
+ inset,
1412
+ ...props
1413
+ }: React$1.ComponentProps<typeof ContextMenu$1.Label> & {
1414
+ inset?: boolean;
1415
+ }): _$react_jsx_runtime0.JSX.Element;
1416
+ declare function ContextMenuSeparator({
1417
+ className,
1418
+ ...props
1419
+ }: React$1.ComponentProps<typeof ContextMenu$1.Separator>): _$react_jsx_runtime0.JSX.Element;
1420
+ declare function ContextMenuShortcut({
1421
+ className,
1422
+ ...props
1423
+ }: React$1.ComponentProps<'span'>): _$react_jsx_runtime0.JSX.Element;
1424
+ //#endregion
1425
+ //#region src/components/direction.d.ts
1426
+ declare function DirectionProvider({
1427
+ dir,
1428
+ direction,
1429
+ children
1430
+ }: React$1.ComponentProps<typeof Direction.DirectionProvider> & {
1431
+ direction?: React$1.ComponentProps<typeof Direction.DirectionProvider>['dir'];
1432
+ }): _$react_jsx_runtime0.JSX.Element;
1433
+ declare const useDirection: typeof Direction.useDirection;
1434
+ //#endregion
1435
+ //#region src/components/drawer.d.ts
1436
+ declare function Drawer({
1437
+ ...props
1438
+ }: React$1.ComponentProps<typeof Drawer$1.Root>): _$react_jsx_runtime0.JSX.Element;
1439
+ declare function DrawerTrigger({
1440
+ ...props
1441
+ }: React$1.ComponentProps<typeof Drawer$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
1442
+ declare function DrawerPortal({
1443
+ ...props
1444
+ }: React$1.ComponentProps<typeof Drawer$1.Portal>): _$react_jsx_runtime0.JSX.Element;
1445
+ declare function DrawerClose({
1446
+ ...props
1447
+ }: React$1.ComponentProps<typeof Drawer$1.Close>): _$react_jsx_runtime0.JSX.Element;
1448
+ declare function DrawerOverlay({
1449
+ className,
1450
+ ...props
1451
+ }: React$1.ComponentProps<typeof Drawer$1.Overlay>): _$react_jsx_runtime0.JSX.Element;
1452
+ declare function DrawerContent({
1453
+ className,
1454
+ container,
1455
+ children,
1456
+ ...props
1457
+ }: React$1.ComponentProps<typeof Drawer$1.Content> & {
1458
+ container?: HTMLDivElement | null;
1459
+ }): _$react_jsx_runtime0.JSX.Element;
1460
+ declare function DrawerHeader({
1461
+ className,
1462
+ ...props
1463
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1464
+ declare function DrawerFooter({
1465
+ className,
1466
+ ...props
1467
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1468
+ declare function DrawerTitle({
1469
+ className,
1470
+ ...props
1471
+ }: React$1.ComponentProps<typeof Drawer$1.Title>): _$react_jsx_runtime0.JSX.Element;
1472
+ declare function DrawerDescription({
1473
+ className,
1474
+ ...props
1475
+ }: React$1.ComponentProps<typeof Drawer$1.Description>): _$react_jsx_runtime0.JSX.Element;
1476
+ //#endregion
1477
+ //#region src/components/empty.d.ts
1478
+ declare function Empty({
1479
+ className,
1480
+ ...props
1481
+ }: React.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1482
+ declare function EmptyHeader({
1483
+ className,
1484
+ ...props
1485
+ }: React.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1486
+ declare const emptyMediaVariants: (props?: ({
1487
+ variant?: "default" | "icon" | null | undefined;
1488
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
1489
+ declare function EmptyMedia({
1490
+ className,
1491
+ variant,
1492
+ ...props
1493
+ }: React.ComponentProps<'div'> & VariantProps<typeof emptyMediaVariants>): _$react_jsx_runtime0.JSX.Element;
1494
+ declare function EmptyTitle({
1495
+ className,
1496
+ ...props
1497
+ }: React.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1498
+ declare function EmptyDescription({
1499
+ className,
1500
+ ...props
1501
+ }: React.ComponentProps<'p'>): _$react_jsx_runtime0.JSX.Element;
1502
+ declare function EmptyContent({
1503
+ className,
1504
+ ...props
1505
+ }: React.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1506
+ //#endregion
1507
+ //#region src/components/label.d.ts
1508
+ declare function Label({
1509
+ className,
1510
+ ...props
1511
+ }: React$1.ComponentProps<typeof Label$1.Root>): _$react_jsx_runtime0.JSX.Element;
1512
+ //#endregion
1513
+ //#region src/components/field.d.ts
1514
+ declare function FieldSet({
1515
+ className,
1516
+ ...props
1517
+ }: React.ComponentProps<'fieldset'>): _$react_jsx_runtime0.JSX.Element;
1518
+ declare function FieldLegend({
1519
+ className,
1520
+ variant,
1521
+ ...props
1522
+ }: React.ComponentProps<'legend'> & {
1523
+ variant?: 'legend' | 'label';
1524
+ }): _$react_jsx_runtime0.JSX.Element;
1525
+ declare function FieldGroup({
1526
+ className,
1527
+ ...props
1528
+ }: React.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1529
+ declare const fieldVariants: (props?: ({
1530
+ orientation?: "horizontal" | "vertical" | "responsive" | null | undefined;
1531
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
1532
+ declare function Field({
1533
+ className,
1534
+ orientation,
1535
+ ...props
1536
+ }: React.ComponentProps<'div'> & VariantProps<typeof fieldVariants>): _$react_jsx_runtime0.JSX.Element;
1537
+ declare function FieldContent({
1538
+ className,
1539
+ ...props
1540
+ }: React.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1541
+ declare function FieldLabel({
1542
+ className,
1543
+ ...props
1544
+ }: React.ComponentProps<typeof Label>): _$react_jsx_runtime0.JSX.Element;
1545
+ declare function FieldTitle({
1546
+ className,
1547
+ ...props
1548
+ }: React.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1549
+ declare function FieldDescription({
1550
+ className,
1551
+ ...props
1552
+ }: React.ComponentProps<'p'>): _$react_jsx_runtime0.JSX.Element;
1553
+ declare function FieldSeparator({
1554
+ children,
1555
+ className,
1556
+ ...props
1557
+ }: React.ComponentProps<'div'> & {
1558
+ children?: React.ReactNode;
1559
+ }): _$react_jsx_runtime0.JSX.Element;
1560
+ declare function FieldError({
1561
+ className,
1562
+ children,
1563
+ errors,
1564
+ ...props
1565
+ }: React.ComponentProps<'div'> & {
1566
+ errors?: ({
1567
+ message?: string;
1568
+ } | undefined)[];
1569
+ }): _$react_jsx_runtime0.JSX.Element | null;
1570
+ //#endregion
1571
+ //#region src/components/input.d.ts
1572
+ declare function Input({
1573
+ className,
1574
+ type,
1575
+ ...props
1576
+ }: React$1.ComponentProps<'input'>): _$react_jsx_runtime0.JSX.Element;
1577
+ //#endregion
1578
+ //#region src/components/input-otp.d.ts
1579
+ declare function InputOTP({
1580
+ className,
1581
+ containerClassName,
1582
+ ...props
1583
+ }: React$1.ComponentProps<typeof OTPInput> & {
1584
+ containerClassName?: string;
1585
+ }): _$react_jsx_runtime0.JSX.Element;
1586
+ declare function InputOTPGroup({
1587
+ className,
1588
+ ...props
1589
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1590
+ declare function InputOTPSlot({
1591
+ index,
1592
+ className,
1593
+ ...props
1594
+ }: React$1.ComponentProps<'div'> & {
1595
+ index: number;
1596
+ }): _$react_jsx_runtime0.JSX.Element;
1597
+ declare function InputOTPSeparator({
1598
+ ...props
1599
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1600
+ //#endregion
1601
+ //#region src/components/item.d.ts
1602
+ declare function ItemGroup({
1603
+ className,
1604
+ ...props
1605
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1606
+ declare function ItemSeparator({
1607
+ className,
1608
+ ...props
1609
+ }: React$1.ComponentProps<typeof Separator>): _$react_jsx_runtime0.JSX.Element;
1610
+ declare const itemVariants: (props?: ({
1611
+ variant?: "default" | "outline" | "muted" | null | undefined;
1612
+ size?: "default" | "xs" | "sm" | null | undefined;
1613
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
1614
+ declare function Item({
1615
+ className,
1616
+ variant,
1617
+ size,
1618
+ asChild,
1619
+ ...props
1620
+ }: React$1.ComponentProps<'div'> & VariantProps<typeof itemVariants> & {
1621
+ asChild?: boolean;
1622
+ }): _$react_jsx_runtime0.JSX.Element;
1623
+ declare const itemMediaVariants: (props?: ({
1624
+ variant?: "image" | "default" | "icon" | null | undefined;
1625
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
1626
+ declare function ItemMedia({
1627
+ className,
1628
+ variant,
1629
+ ...props
1630
+ }: React$1.ComponentProps<'div'> & VariantProps<typeof itemMediaVariants>): _$react_jsx_runtime0.JSX.Element;
1631
+ declare function ItemContent({
1632
+ className,
1633
+ ...props
1634
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1635
+ declare function ItemTitle({
1636
+ className,
1637
+ ...props
1638
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1639
+ declare function ItemDescription({
1640
+ className,
1641
+ ...props
1642
+ }: React$1.ComponentProps<'p'>): _$react_jsx_runtime0.JSX.Element;
1643
+ declare function ItemActions({
1644
+ className,
1645
+ ...props
1646
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1647
+ declare function ItemHeader({
1648
+ className,
1649
+ ...props
1650
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1651
+ declare function ItemFooter({
1652
+ className,
1653
+ ...props
1654
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1655
+ //#endregion
1656
+ //#region src/components/kbd.d.ts
1657
+ declare function Kbd({
1658
+ className,
1659
+ ...props
1660
+ }: React.ComponentProps<'kbd'>): _$react_jsx_runtime0.JSX.Element;
1661
+ declare function KbdGroup({
1662
+ className,
1663
+ ...props
1664
+ }: React.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1665
+ //#endregion
1666
+ //#region src/components/menubar.d.ts
1667
+ declare function Menubar({
1668
+ className,
1669
+ ...props
1670
+ }: React$1.ComponentProps<typeof Menubar$1.Root>): _$react_jsx_runtime0.JSX.Element;
1671
+ declare function MenubarMenu({
1672
+ ...props
1673
+ }: React$1.ComponentProps<typeof Menubar$1.Menu>): _$react_jsx_runtime0.JSX.Element;
1674
+ declare function MenubarGroup({
1675
+ ...props
1676
+ }: React$1.ComponentProps<typeof Menubar$1.Group>): _$react_jsx_runtime0.JSX.Element;
1677
+ declare function MenubarPortal({
1678
+ ...props
1679
+ }: React$1.ComponentProps<typeof Menubar$1.Portal>): _$react_jsx_runtime0.JSX.Element;
1680
+ declare function MenubarRadioGroup({
1681
+ ...props
1682
+ }: React$1.ComponentProps<typeof Menubar$1.RadioGroup>): _$react_jsx_runtime0.JSX.Element;
1683
+ declare function MenubarTrigger({
1684
+ className,
1685
+ ...props
1686
+ }: React$1.ComponentProps<typeof Menubar$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
1687
+ declare function MenubarContent({
1688
+ className,
1689
+ align,
1690
+ alignOffset,
1691
+ sideOffset,
1692
+ ...props
1693
+ }: React$1.ComponentProps<typeof Menubar$1.Content>): _$react_jsx_runtime0.JSX.Element;
1694
+ declare function MenubarItem({
1695
+ className,
1696
+ inset,
1697
+ variant,
1698
+ ...props
1699
+ }: React$1.ComponentProps<typeof Menubar$1.Item> & {
1700
+ inset?: boolean;
1701
+ variant?: 'default' | 'destructive';
1702
+ }): _$react_jsx_runtime0.JSX.Element;
1703
+ declare function MenubarCheckboxItem({
1704
+ className,
1705
+ children,
1706
+ checked,
1707
+ inset,
1708
+ ...props
1709
+ }: React$1.ComponentProps<typeof Menubar$1.CheckboxItem> & {
1710
+ inset?: boolean;
1711
+ }): _$react_jsx_runtime0.JSX.Element;
1712
+ declare function MenubarRadioItem({
1713
+ className,
1714
+ children,
1715
+ inset,
1716
+ ...props
1717
+ }: React$1.ComponentProps<typeof Menubar$1.RadioItem> & {
1718
+ inset?: boolean;
1719
+ }): _$react_jsx_runtime0.JSX.Element;
1720
+ declare function MenubarLabel({
1721
+ className,
1722
+ inset,
1723
+ ...props
1724
+ }: React$1.ComponentProps<typeof Menubar$1.Label> & {
1725
+ inset?: boolean;
1726
+ }): _$react_jsx_runtime0.JSX.Element;
1727
+ declare function MenubarSeparator({
1728
+ className,
1729
+ ...props
1730
+ }: React$1.ComponentProps<typeof Menubar$1.Separator>): _$react_jsx_runtime0.JSX.Element;
1731
+ declare function MenubarShortcut({
1732
+ className,
1733
+ ...props
1734
+ }: React$1.ComponentProps<'span'>): _$react_jsx_runtime0.JSX.Element;
1735
+ declare function MenubarSub({
1736
+ ...props
1737
+ }: React$1.ComponentProps<typeof Menubar$1.Sub>): _$react_jsx_runtime0.JSX.Element;
1738
+ declare function MenubarSubTrigger({
1739
+ className,
1740
+ inset,
1741
+ children,
1742
+ ...props
1743
+ }: React$1.ComponentProps<typeof Menubar$1.SubTrigger> & {
1744
+ inset?: boolean;
1745
+ }): _$react_jsx_runtime0.JSX.Element;
1746
+ declare function MenubarSubContent({
1747
+ className,
1748
+ ...props
1749
+ }: React$1.ComponentProps<typeof Menubar$1.SubContent>): _$react_jsx_runtime0.JSX.Element;
1750
+ //#endregion
1751
+ //#region src/components/native-select.d.ts
1752
+ type NativeSelectProps = Omit<React$1.ComponentProps<'select'>, 'size'> & {
1753
+ size?: 'sm' | 'default';
1754
+ };
1755
+ declare function NativeSelect({
1756
+ className,
1757
+ size,
1758
+ ...props
1759
+ }: NativeSelectProps): _$react_jsx_runtime0.JSX.Element;
1760
+ declare function NativeSelectOption({
1761
+ ...props
1762
+ }: React$1.ComponentProps<'option'>): _$react_jsx_runtime0.JSX.Element;
1763
+ declare function NativeSelectOptGroup({
1764
+ className,
1765
+ ...props
1766
+ }: React$1.ComponentProps<'optgroup'>): _$react_jsx_runtime0.JSX.Element;
1767
+ //#endregion
1768
+ //#region src/components/navigation-menu.d.ts
1769
+ declare function NavigationMenu({
1770
+ className,
1771
+ children,
1772
+ viewport,
1773
+ ...props
1774
+ }: React$1.ComponentProps<typeof NavigationMenu$1.Root> & {
1775
+ viewport?: boolean;
1776
+ }): _$react_jsx_runtime0.JSX.Element;
1777
+ declare function NavigationMenuList({
1778
+ className,
1779
+ ...props
1780
+ }: React$1.ComponentProps<typeof NavigationMenu$1.List>): _$react_jsx_runtime0.JSX.Element;
1781
+ declare function NavigationMenuItem({
1782
+ className,
1783
+ ...props
1784
+ }: React$1.ComponentProps<typeof NavigationMenu$1.Item>): _$react_jsx_runtime0.JSX.Element;
1785
+ declare const navigationMenuTriggerStyle: (props?: _$class_variance_authority_types0.ClassProp | undefined) => string;
1786
+ declare function NavigationMenuTrigger({
1787
+ className,
1788
+ children,
1789
+ ...props
1790
+ }: React$1.ComponentProps<typeof NavigationMenu$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
1791
+ declare function NavigationMenuContent({
1792
+ className,
1793
+ ...props
1794
+ }: React$1.ComponentProps<typeof NavigationMenu$1.Content>): _$react_jsx_runtime0.JSX.Element;
1795
+ declare function NavigationMenuViewport({
1796
+ className,
1797
+ ...props
1798
+ }: React$1.ComponentProps<typeof NavigationMenu$1.Viewport>): _$react_jsx_runtime0.JSX.Element;
1799
+ declare function NavigationMenuLink({
1800
+ className,
1801
+ ...props
1802
+ }: React$1.ComponentProps<typeof NavigationMenu$1.Link>): _$react_jsx_runtime0.JSX.Element;
1803
+ declare function NavigationMenuIndicator({
1804
+ className,
1805
+ ...props
1806
+ }: React$1.ComponentProps<typeof NavigationMenu$1.Indicator>): _$react_jsx_runtime0.JSX.Element;
1807
+ //#endregion
1808
+ //#region src/components/pagination.d.ts
1809
+ declare function Pagination({
1810
+ className,
1811
+ ...props
1812
+ }: React$1.ComponentProps<'nav'>): _$react_jsx_runtime0.JSX.Element;
1813
+ declare function PaginationContent({
1814
+ className,
1815
+ ...props
1816
+ }: React$1.ComponentProps<'ul'>): _$react_jsx_runtime0.JSX.Element;
1817
+ declare function PaginationItem({
1818
+ ...props
1819
+ }: React$1.ComponentProps<'li'>): _$react_jsx_runtime0.JSX.Element;
1820
+ type PaginationLinkProps = {
1821
+ isActive?: boolean;
1822
+ } & Pick<React$1.ComponentProps<typeof Button>, 'size'> & React$1.ComponentProps<'a'>;
1823
+ declare function PaginationLink({
1824
+ className,
1825
+ isActive,
1826
+ size,
1827
+ ...props
1828
+ }: PaginationLinkProps): _$react_jsx_runtime0.JSX.Element;
1829
+ declare function PaginationPrevious({
1830
+ className,
1831
+ text,
1832
+ ...props
1833
+ }: React$1.ComponentProps<typeof PaginationLink> & {
1834
+ text?: string;
1835
+ }): _$react_jsx_runtime0.JSX.Element;
1836
+ declare function PaginationNext({
1837
+ className,
1838
+ text,
1839
+ ...props
1840
+ }: React$1.ComponentProps<typeof PaginationLink> & {
1841
+ text?: string;
1842
+ }): _$react_jsx_runtime0.JSX.Element;
1843
+ declare function PaginationEllipsis({
1844
+ className,
1845
+ ...props
1846
+ }: React$1.ComponentProps<'span'>): _$react_jsx_runtime0.JSX.Element;
1847
+ //#endregion
1848
+ //#region src/components/popover.d.ts
1849
+ declare function Popover({
1850
+ ...props
1851
+ }: React$1.ComponentProps<typeof Popover$1.Root>): _$react_jsx_runtime0.JSX.Element;
1852
+ declare function PopoverTrigger({
1853
+ ...props
1854
+ }: React$1.ComponentProps<typeof Popover$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
1855
+ declare function PopoverContent({
1856
+ className,
1857
+ align,
1858
+ sideOffset,
1859
+ ...props
1860
+ }: React$1.ComponentProps<typeof Popover$1.Content>): _$react_jsx_runtime0.JSX.Element;
1861
+ declare function PopoverAnchor({
1862
+ ...props
1863
+ }: React$1.ComponentProps<typeof Popover$1.Anchor>): _$react_jsx_runtime0.JSX.Element;
1864
+ declare function PopoverHeader({
1865
+ className,
1866
+ ...props
1867
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1868
+ declare function PopoverTitle({
1869
+ className,
1870
+ ...props
1871
+ }: React$1.ComponentProps<'h2'>): _$react_jsx_runtime0.JSX.Element;
1872
+ declare function PopoverDescription({
1873
+ className,
1874
+ ...props
1875
+ }: React$1.ComponentProps<'p'>): _$react_jsx_runtime0.JSX.Element;
1876
+ //#endregion
1877
+ //#region src/components/progress.d.ts
1878
+ declare function Progress({
1879
+ className,
1880
+ value,
1881
+ ...props
1882
+ }: React$1.ComponentProps<typeof Progress$1.Root>): _$react_jsx_runtime0.JSX.Element;
1883
+ //#endregion
1884
+ //#region src/components/radio-group.d.ts
1885
+ declare function RadioGroup({
1886
+ className,
1887
+ ...props
1888
+ }: React$1.ComponentProps<typeof RadioGroup$1.Root>): _$react_jsx_runtime0.JSX.Element;
1889
+ declare function RadioGroupItem({
1890
+ className,
1891
+ ...props
1892
+ }: React$1.ComponentProps<typeof RadioGroup$1.Item>): _$react_jsx_runtime0.JSX.Element;
1893
+ //#endregion
1894
+ //#region src/components/resizable.d.ts
1895
+ declare function ResizablePanelGroup({
1896
+ className,
1897
+ ...props
1898
+ }: ResizablePrimitive.GroupProps): _$react_jsx_runtime0.JSX.Element;
1899
+ declare function ResizablePanel({
1900
+ ...props
1901
+ }: ResizablePrimitive.PanelProps): _$react_jsx_runtime0.JSX.Element;
1902
+ declare function ResizableHandle({
1903
+ withHandle,
1904
+ className,
1905
+ ...props
1906
+ }: ResizablePrimitive.SeparatorProps & {
1907
+ withHandle?: boolean;
1908
+ }): _$react_jsx_runtime0.JSX.Element;
1909
+ //#endregion
1910
+ //#region src/components/scroll-area.d.ts
1911
+ declare function ScrollArea({
1912
+ className,
1913
+ children,
1914
+ ...props
1915
+ }: React$1.ComponentProps<typeof ScrollArea$1.Root>): _$react_jsx_runtime0.JSX.Element;
1916
+ declare function ScrollBar({
1917
+ className,
1918
+ orientation,
1919
+ ...props
1920
+ }: React$1.ComponentProps<typeof ScrollArea$1.ScrollAreaScrollbar>): _$react_jsx_runtime0.JSX.Element;
1921
+ //#endregion
1922
+ //#region src/components/sheet.d.ts
1923
+ declare function Sheet({
1924
+ ...props
1925
+ }: React$1.ComponentProps<typeof Dialog$1.Root>): _$react_jsx_runtime0.JSX.Element;
1926
+ declare function SheetTrigger({
1927
+ ...props
1928
+ }: React$1.ComponentProps<typeof Dialog$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
1929
+ declare function SheetClose({
1930
+ ...props
1931
+ }: React$1.ComponentProps<typeof Dialog$1.Close>): _$react_jsx_runtime0.JSX.Element;
1932
+ declare function SheetContent({
1933
+ className,
1934
+ children,
1935
+ side,
1936
+ showCloseButton,
1937
+ ...props
1938
+ }: React$1.ComponentProps<typeof Dialog$1.Content> & {
1939
+ side?: 'top' | 'right' | 'bottom' | 'left';
1940
+ showCloseButton?: boolean;
1941
+ }): _$react_jsx_runtime0.JSX.Element;
1942
+ declare function SheetHeader({
1943
+ className,
1944
+ ...props
1945
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1946
+ declare function SheetFooter({
1947
+ className,
1948
+ ...props
1949
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
1950
+ declare function SheetTitle({
1951
+ className,
1952
+ ...props
1953
+ }: React$1.ComponentProps<typeof Dialog$1.Title>): _$react_jsx_runtime0.JSX.Element;
1954
+ declare function SheetDescription({
1955
+ className,
1956
+ ...props
1957
+ }: React$1.ComponentProps<typeof Dialog$1.Description>): _$react_jsx_runtime0.JSX.Element;
1958
+ //#endregion
1959
+ //#region src/components/sidebar.d.ts
1960
+ type SidebarContextProps = {
1961
+ state: 'expanded' | 'collapsed';
1962
+ open: boolean;
1963
+ setOpen: (open: boolean) => void;
1964
+ openMobile: boolean;
1965
+ setOpenMobile: (open: boolean) => void;
1966
+ isMobile: boolean;
1967
+ toggleSidebar: () => void;
1968
+ };
1969
+ declare function useSidebar(): SidebarContextProps;
1970
+ declare function SidebarProvider({
1971
+ defaultOpen,
1972
+ open: openProp,
1973
+ onOpenChange: setOpenProp,
1974
+ className,
1975
+ style,
1976
+ children,
1977
+ ...props
1978
+ }: React$1.ComponentProps<'div'> & {
1979
+ defaultOpen?: boolean;
1980
+ open?: boolean;
1981
+ onOpenChange?: (open: boolean) => void;
1982
+ }): _$react_jsx_runtime0.JSX.Element;
1983
+ declare function Sidebar({
1984
+ side,
1985
+ variant,
1986
+ collapsible,
1987
+ className,
1988
+ children,
1989
+ dir,
1990
+ ...props
1991
+ }: React$1.ComponentProps<'div'> & {
1992
+ side?: 'left' | 'right';
1993
+ variant?: 'sidebar' | 'floating' | 'inset';
1994
+ collapsible?: 'offcanvas' | 'icon' | 'none';
1995
+ }): _$react_jsx_runtime0.JSX.Element;
1996
+ declare function SidebarTrigger({
1997
+ className,
1998
+ onClick,
1999
+ ...props
2000
+ }: React$1.ComponentProps<typeof Button>): _$react_jsx_runtime0.JSX.Element;
2001
+ declare function SidebarRail({
2002
+ className,
2003
+ ...props
2004
+ }: React$1.ComponentProps<'button'>): _$react_jsx_runtime0.JSX.Element;
2005
+ declare function SidebarInset({
2006
+ className,
2007
+ ...props
2008
+ }: React$1.ComponentProps<'main'>): _$react_jsx_runtime0.JSX.Element;
2009
+ declare function SidebarInput({
2010
+ className,
2011
+ ...props
2012
+ }: React$1.ComponentProps<typeof Input>): _$react_jsx_runtime0.JSX.Element;
2013
+ declare function SidebarHeader({
2014
+ className,
2015
+ ...props
2016
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
2017
+ declare function SidebarFooter({
2018
+ className,
2019
+ ...props
2020
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
2021
+ declare function SidebarSeparator({
2022
+ className,
2023
+ ...props
2024
+ }: React$1.ComponentProps<typeof Separator>): _$react_jsx_runtime0.JSX.Element;
2025
+ declare function SidebarContent({
2026
+ className,
2027
+ ...props
2028
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
2029
+ declare function SidebarGroup({
2030
+ className,
2031
+ ...props
2032
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
2033
+ declare function SidebarGroupLabel({
2034
+ className,
2035
+ asChild,
2036
+ ...props
2037
+ }: React$1.ComponentProps<'div'> & {
2038
+ asChild?: boolean;
2039
+ }): _$react_jsx_runtime0.JSX.Element;
2040
+ declare function SidebarGroupAction({
2041
+ className,
2042
+ asChild,
2043
+ ...props
2044
+ }: React$1.ComponentProps<'button'> & {
2045
+ asChild?: boolean;
2046
+ }): _$react_jsx_runtime0.JSX.Element;
2047
+ declare function SidebarGroupContent({
2048
+ className,
2049
+ ...props
2050
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
2051
+ declare function SidebarMenu({
2052
+ className,
2053
+ ...props
2054
+ }: React$1.ComponentProps<'ul'>): _$react_jsx_runtime0.JSX.Element;
2055
+ declare function SidebarMenuItem({
2056
+ className,
2057
+ ...props
2058
+ }: React$1.ComponentProps<'li'>): _$react_jsx_runtime0.JSX.Element;
2059
+ declare const sidebarMenuButtonVariants: (props?: ({
2060
+ variant?: "default" | "outline" | null | undefined;
2061
+ size?: "default" | "sm" | "lg" | null | undefined;
2062
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
2063
+ declare function SidebarMenuButton({
2064
+ asChild,
2065
+ isActive,
2066
+ variant,
2067
+ size,
2068
+ tooltip,
2069
+ className,
2070
+ ...props
2071
+ }: React$1.ComponentProps<'button'> & {
2072
+ asChild?: boolean;
2073
+ isActive?: boolean;
2074
+ tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
2075
+ } & VariantProps<typeof sidebarMenuButtonVariants>): _$react_jsx_runtime0.JSX.Element;
2076
+ declare function SidebarMenuAction({
2077
+ className,
2078
+ asChild,
2079
+ showOnHover,
2080
+ ...props
2081
+ }: React$1.ComponentProps<'button'> & {
2082
+ asChild?: boolean;
2083
+ showOnHover?: boolean;
2084
+ }): _$react_jsx_runtime0.JSX.Element;
2085
+ declare function SidebarMenuBadge({
2086
+ className,
2087
+ ...props
2088
+ }: React$1.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
2089
+ declare function SidebarMenuSkeleton({
2090
+ className,
2091
+ showIcon,
2092
+ ...props
2093
+ }: React$1.ComponentProps<'div'> & {
2094
+ showIcon?: boolean;
2095
+ }): _$react_jsx_runtime0.JSX.Element;
2096
+ declare function SidebarMenuSub({
2097
+ className,
2098
+ ...props
2099
+ }: React$1.ComponentProps<'ul'>): _$react_jsx_runtime0.JSX.Element;
2100
+ declare function SidebarMenuSubItem({
2101
+ className,
2102
+ ...props
2103
+ }: React$1.ComponentProps<'li'>): _$react_jsx_runtime0.JSX.Element;
2104
+ declare function SidebarMenuSubButton({
2105
+ asChild,
2106
+ size,
2107
+ isActive,
2108
+ className,
2109
+ ...props
2110
+ }: React$1.ComponentProps<'a'> & {
2111
+ asChild?: boolean;
2112
+ size?: 'sm' | 'md';
2113
+ isActive?: boolean;
2114
+ }): _$react_jsx_runtime0.JSX.Element;
2115
+ //#endregion
2116
+ //#region src/components/skeleton.d.ts
2117
+ declare function Skeleton({
2118
+ className,
2119
+ ...props
2120
+ }: React.ComponentProps<'div'>): _$react_jsx_runtime0.JSX.Element;
2121
+ //#endregion
2122
+ //#region src/components/slider.d.ts
2123
+ declare function Slider({
2124
+ className,
2125
+ defaultValue,
2126
+ value,
2127
+ min,
2128
+ max,
2129
+ ...props
2130
+ }: React$1.ComponentProps<typeof Slider$1.Root>): _$react_jsx_runtime0.JSX.Element;
2131
+ //#endregion
2132
+ //#region src/components/sonner.d.ts
2133
+ declare const Toaster: ({
2134
+ ...props
2135
+ }: ToasterProps) => _$react_jsx_runtime0.JSX.Element;
2136
+ //#endregion
2137
+ //#region src/components/spinner.d.ts
2138
+ declare function Spinner({
2139
+ className,
2140
+ ...props
2141
+ }: React.ComponentProps<'svg'>): _$react_jsx_runtime0.JSX.Element;
2142
+ //#endregion
2143
+ //#region src/components/switch.d.ts
2144
+ declare function Switch({
2145
+ className,
2146
+ size,
2147
+ ...props
2148
+ }: React$1.ComponentProps<typeof Switch$1.Root> & {
2149
+ size?: 'sm' | 'default';
2150
+ }): _$react_jsx_runtime0.JSX.Element;
2151
+ //#endregion
2152
+ //#region src/components/table.d.ts
2153
+ declare function Table({
2154
+ className,
2155
+ ...props
2156
+ }: React$1.ComponentProps<'table'>): _$react_jsx_runtime0.JSX.Element;
2157
+ declare function TableHeader({
2158
+ className,
2159
+ ...props
2160
+ }: React$1.ComponentProps<'thead'>): _$react_jsx_runtime0.JSX.Element;
2161
+ declare function TableBody({
2162
+ className,
2163
+ ...props
2164
+ }: React$1.ComponentProps<'tbody'>): _$react_jsx_runtime0.JSX.Element;
2165
+ declare function TableFooter({
2166
+ className,
2167
+ ...props
2168
+ }: React$1.ComponentProps<'tfoot'>): _$react_jsx_runtime0.JSX.Element;
2169
+ declare function TableRow({
2170
+ className,
2171
+ ...props
2172
+ }: React$1.ComponentProps<'tr'>): _$react_jsx_runtime0.JSX.Element;
2173
+ declare function TableHead({
2174
+ className,
2175
+ ...props
2176
+ }: React$1.ComponentProps<'th'>): _$react_jsx_runtime0.JSX.Element;
2177
+ declare function TableCell({
2178
+ className,
2179
+ ...props
2180
+ }: React$1.ComponentProps<'td'>): _$react_jsx_runtime0.JSX.Element;
2181
+ declare function TableCaption({
2182
+ className,
2183
+ ...props
2184
+ }: React$1.ComponentProps<'caption'>): _$react_jsx_runtime0.JSX.Element;
2185
+ //#endregion
2186
+ //#region src/components/tabs.d.ts
2187
+ declare function Tabs({
2188
+ className,
2189
+ orientation,
2190
+ ...props
2191
+ }: React$1.ComponentProps<typeof Tabs$1.Root>): _$react_jsx_runtime0.JSX.Element;
2192
+ declare const tabsListVariants: (props?: ({
2193
+ variant?: "line" | "default" | null | undefined;
2194
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
2195
+ declare function TabsList({
2196
+ className,
2197
+ variant,
2198
+ ...props
2199
+ }: React$1.ComponentProps<typeof Tabs$1.List> & VariantProps<typeof tabsListVariants>): _$react_jsx_runtime0.JSX.Element;
2200
+ declare function TabsTrigger({
2201
+ className,
2202
+ ...props
2203
+ }: React$1.ComponentProps<typeof Tabs$1.Trigger>): _$react_jsx_runtime0.JSX.Element;
2204
+ declare function TabsContent({
2205
+ className,
2206
+ ...props
2207
+ }: React$1.ComponentProps<typeof Tabs$1.Content>): _$react_jsx_runtime0.JSX.Element;
2208
+ //#endregion
2209
+ //#region src/components/textarea.d.ts
2210
+ declare function Textarea({
2211
+ className,
2212
+ ...props
2213
+ }: React$1.ComponentProps<'textarea'>): _$react_jsx_runtime0.JSX.Element;
2214
+ //#endregion
2215
+ //#region src/components/toggle.d.ts
2216
+ declare const toggleVariants: (props?: ({
2217
+ variant?: "default" | "outline" | null | undefined;
2218
+ size?: "default" | "sm" | "lg" | null | undefined;
2219
+ } & _$class_variance_authority_types0.ClassProp) | undefined) => string;
2220
+ declare function Toggle({
2221
+ className,
2222
+ variant,
2223
+ size,
2224
+ ...props
2225
+ }: React$1.ComponentProps<typeof Toggle$1.Root> & VariantProps<typeof toggleVariants>): _$react_jsx_runtime0.JSX.Element;
2226
+ //#endregion
2227
+ //#region src/components/toggle-group.d.ts
2228
+ declare function ToggleGroup({
2229
+ className,
2230
+ variant,
2231
+ size,
2232
+ spacing,
2233
+ orientation,
2234
+ children,
2235
+ ...props
2236
+ }: React$1.ComponentProps<typeof ToggleGroup$1.Root> & VariantProps<typeof toggleVariants> & {
2237
+ spacing?: number;
2238
+ orientation?: 'horizontal' | 'vertical';
2239
+ }): _$react_jsx_runtime0.JSX.Element;
2240
+ declare function ToggleGroupItem({
2241
+ className,
2242
+ children,
2243
+ variant,
2244
+ size,
2245
+ ...props
2246
+ }: React$1.ComponentProps<typeof ToggleGroup$1.Item> & VariantProps<typeof toggleVariants>): _$react_jsx_runtime0.JSX.Element;
20
2247
  //#endregion
21
- export { Button, buttonVariants };
2248
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Attachment, AttachmentData, AttachmentEmpty, AttachmentEmptyProps, AttachmentHoverCard, AttachmentHoverCardContent, AttachmentHoverCardContentProps, AttachmentHoverCardProps, AttachmentHoverCardTrigger, AttachmentHoverCardTriggerProps, AttachmentInfo, AttachmentInfoProps, AttachmentMediaCategory, AttachmentPreview, AttachmentPreviewProps, AttachmentProps, AttachmentRemove, AttachmentRemoveProps, AttachmentVariant, Attachments, AttachmentsContext, AttachmentsProps, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Conversation, ConversationContent, ConversationContentProps, ConversationDownload, ConversationDownloadProps, ConversationEmptyState, ConversationEmptyStateProps, ConversationProps, ConversationScrollButton, ConversationScrollButtonProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DirectionProvider, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, LocalReferencedSourcesContext, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, Message, MessageAction, MessageActionProps, MessageActions, MessageActionsProps, MessageBranch, MessageBranchContent, MessageBranchContentProps, MessageBranchNext, MessageBranchNextProps, MessageBranchPage, MessageBranchPageProps, MessageBranchPrevious, MessageBranchPreviousProps, MessageBranchProps, MessageBranchSelector, MessageBranchSelectorProps, MessageContent, MessageContentProps, MessageProps, MessageResponse, MessageResponseProps, MessageToolbar, MessageToolbarProps, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, PromptInput, PromptInputActionAddAttachments, PromptInputActionAddAttachmentsProps, PromptInputActionAddScreenshot, PromptInputActionAddScreenshotProps, PromptInputActionMenu, PromptInputActionMenuContent, PromptInputActionMenuContentProps, PromptInputActionMenuItem, PromptInputActionMenuItemProps, PromptInputActionMenuProps, PromptInputActionMenuTrigger, PromptInputActionMenuTriggerProps, PromptInputBody, PromptInputBodyProps, PromptInputButton, PromptInputButtonProps, PromptInputButtonTooltip, PromptInputCommand, PromptInputCommandEmpty, PromptInputCommandEmptyProps, PromptInputCommandGroup, PromptInputCommandGroupProps, PromptInputCommandInput, PromptInputCommandInputProps, PromptInputCommandItem, PromptInputCommandItemProps, PromptInputCommandList, PromptInputCommandListProps, PromptInputCommandProps, PromptInputCommandSeparator, PromptInputCommandSeparatorProps, PromptInputControllerProps, PromptInputFooter, PromptInputFooterProps, PromptInputHeader, PromptInputHeaderProps, PromptInputHoverCard, PromptInputHoverCardContent, PromptInputHoverCardContentProps, PromptInputHoverCardProps, PromptInputHoverCardTrigger, PromptInputHoverCardTriggerProps, PromptInputMessage, PromptInputProps, PromptInputProvider, PromptInputProviderProps, PromptInputSelect, PromptInputSelectContent, PromptInputSelectContentProps, PromptInputSelectItem, PromptInputSelectItemProps, PromptInputSelectProps, PromptInputSelectTrigger, PromptInputSelectTriggerProps, PromptInputSelectValue, PromptInputSelectValueProps, PromptInputSubmit, PromptInputSubmitProps, PromptInputTab, PromptInputTabBody, PromptInputTabBodyProps, PromptInputTabItem, PromptInputTabItemProps, PromptInputTabLabel, PromptInputTabLabelProps, PromptInputTabProps, PromptInputTabsList, PromptInputTabsListProps, PromptInputTextarea, PromptInputTextareaProps, PromptInputTools, PromptInputToolsProps, RadioGroup, RadioGroupItem, ReferencedSourcesContext, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, SpeechInput, SpeechInputProps, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TextInputContext, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, getAttachmentLabel, getMediaCategory, messagesToMarkdown, navigationMenuTriggerStyle, tabsListVariants, toggleVariants, useAttachmentContext, useAttachmentsContext, useCarousel, useComboboxAnchor, useDirection, usePromptInputAttachments, usePromptInputController, usePromptInputReferencedSources, useProviderAttachments, useSidebar };