@2urgseui/core 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,879 @@
1
+ import * as class_variance_authority_types from 'class-variance-authority/types';
2
+ import * as React from 'react';
3
+ import { ReactNode } from 'react';
4
+ import { VariantProps } from 'class-variance-authority';
5
+ import * as react_jsx_runtime from 'react/jsx-runtime';
6
+ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
7
+ import * as AccordionPrimitive from '@radix-ui/react-accordion';
8
+ import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
9
+ import * as AvatarPrimitive from '@radix-ui/react-avatar';
10
+ import { DayPicker, DayButton } from 'react-day-picker';
11
+ import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
12
+ import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
13
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
14
+ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
15
+ import * as vaul from 'vaul';
16
+ import { Drawer as Drawer$1 } from 'vaul';
17
+ import { FieldValues, Path, UseFormRegister, Control, RegisterOptions } from 'react-hook-form';
18
+ import * as input_otp from 'input-otp';
19
+ import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
20
+ import * as SelectPrimitive from '@radix-ui/react-select';
21
+ import * as SwitchPrimitives from '@radix-ui/react-switch';
22
+ import * as LabelPrimitive from '@radix-ui/react-label';
23
+ import * as PopoverPrimitive from '@radix-ui/react-popover';
24
+ import * as ProgressPrimitive from '@radix-ui/react-progress';
25
+ import { Config } from 'dompurify';
26
+ export { Config as RichHtmlSanitizeConfig } from 'dompurify';
27
+ import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
28
+ import * as SeparatorPrimitive from '@radix-ui/react-separator';
29
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
30
+ import * as SliderPrimitive from '@radix-ui/react-slider';
31
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
32
+ import * as ToastPrimitive from '@radix-ui/react-toast';
33
+ export { Breakpoint, Colors, borderRadius, boxShadow, breakpoints, colors, spacing, transitionDuration, transitionTimingFunction, typography } from './tokens/index.js';
34
+
35
+ declare const alertVariants: (props?: ({
36
+ variant?: "default" | "destructive" | "success" | "warning" | null | undefined;
37
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
38
+ interface AlertProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof alertVariants> {
39
+ }
40
+ declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
41
+ declare const AlertTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLHeadingElement> & React.RefAttributes<HTMLHeadingElement>>;
42
+ declare const AlertDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
43
+
44
+ declare const AlertDialog: React.FC<AlertDialogPrimitive.AlertDialogProps>;
45
+ declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
46
+ declare const AlertDialogPortal: React.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
47
+ declare const AlertDialogOverlay: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
48
+ declare const AlertDialogContent: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
49
+ declare const AlertDialogHeader: {
50
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
51
+ displayName: string;
52
+ };
53
+ declare const AlertDialogFooter: {
54
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
55
+ displayName: string;
56
+ };
57
+ declare const AlertDialogTitle: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
58
+ declare const AlertDialogDescription: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
59
+ declare const AlertDialogAction: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
60
+ declare const AlertDialogCancel: React.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
61
+
62
+ declare const Accordion: React.ForwardRefExoticComponent<(AccordionPrimitive.AccordionSingleProps | AccordionPrimitive.AccordionMultipleProps) & React.RefAttributes<HTMLDivElement>>;
63
+ declare const AccordionItem: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
64
+ declare const AccordionTrigger: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
65
+ declare const AccordionContent: React.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
66
+
67
+ interface AsyncSelectPage<T = Record<string, unknown>> {
68
+ data: T[];
69
+ hasMore: boolean;
70
+ }
71
+ type AsyncSelectFetcher<T = Record<string, unknown>> = (params: {
72
+ url: string;
73
+ search: string;
74
+ page: number;
75
+ }) => Promise<AsyncSelectPage<T>>;
76
+ interface AsyncSelectProps<T = Record<string, unknown>> {
77
+ /** Base endpoint URL. `search` and `page` are passed to the fetcher. */
78
+ url: string;
79
+ /** Key on each item used as the option value (must be unique & non-empty). */
80
+ valueKey: keyof T & string;
81
+ /** Key (or render fn) for the display label. */
82
+ labelKey: (keyof T & string) | ((item: T) => React.ReactNode);
83
+ /** Controlled value. */
84
+ value?: string;
85
+ /** Change handler — receives the selected item's value key, or `""` when cleared. */
86
+ onValueChange?: (value: string) => void;
87
+ /** Placeholder shown in the trigger when nothing is selected. */
88
+ placeholder?: string;
89
+ /** Placeholder for the search input inside the dropdown. */
90
+ searchPlaceholder?: string;
91
+ /** Debounce delay (ms) for the search input. @default 300 */
92
+ debounce?: number;
93
+ /** Show the search input. @default true */
94
+ searchable?: boolean;
95
+ /** Allow clearing the selection. @default true */
96
+ clearable?: boolean;
97
+ disabled?: boolean;
98
+ error?: boolean;
99
+ name?: string;
100
+ className?: string;
101
+ /** Custom fetcher. Defaults to a JSON fetch that appends `?search=&page=` to `url`. */
102
+ fetcher?: AsyncSelectFetcher<T>;
103
+ /**
104
+ * Path to the array inside the JSON response. For instance if your API
105
+ * returns `{ results: [...] }`, pass `"results"`. Nested paths like
106
+ * `"data.items"` are supported. @default "data"
107
+ */
108
+ dataPath?: string;
109
+ /**
110
+ * Path to a boolean or total-count field that indicates more pages exist.
111
+ * When it resolves to a number we compare `loadedSoFar < total`.
112
+ * @default "hasMore"
113
+ */
114
+ hasMorePath?: string;
115
+ /** Fixed page size used when calculating hasMore from a total count. @default 20 */
116
+ pageSize?: number;
117
+ }
118
+ /**
119
+ * An async, searchable, paginated select. Fetches options from a remote URL
120
+ * and presents them in a popover dropdown styled like the library's `Select`.
121
+ *
122
+ * ```tsx
123
+ * <AsyncSelect
124
+ * url="/api/employees"
125
+ * valueKey="id"
126
+ * labelKey="fullName"
127
+ * value={employeeId}
128
+ * onValueChange={setEmployeeId}
129
+ * placeholder="Choose an employee…"
130
+ * />
131
+ * ```
132
+ */
133
+ declare const AsyncSelect: <T = Record<string, unknown>>(props: AsyncSelectProps<T> & {
134
+ ref?: React.Ref<HTMLButtonElement>;
135
+ }) => React.ReactElement;
136
+
137
+ interface AppShellProps {
138
+ sidebar?: React.ReactNode;
139
+ topbar?: React.ReactNode;
140
+ children: React.ReactNode;
141
+ className?: string;
142
+ }
143
+ declare function AppShell({ sidebar, topbar, children, className }: AppShellProps): react_jsx_runtime.JSX.Element;
144
+
145
+ interface AspectRatioProps extends React.ComponentPropsWithoutRef<typeof AspectRatioPrimitive.Root> {
146
+ ratio?: number;
147
+ }
148
+ declare const AspectRatio: React.ForwardRefExoticComponent<AspectRatioProps & React.RefAttributes<HTMLDivElement>>;
149
+
150
+ declare const avatarSizes: {
151
+ xs: string;
152
+ sm: string;
153
+ md: string;
154
+ lg: string;
155
+ xl: string;
156
+ };
157
+ interface AvatarProps extends React.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root> {
158
+ size?: keyof typeof avatarSizes;
159
+ }
160
+ declare const Avatar: React.ForwardRefExoticComponent<AvatarProps & React.RefAttributes<HTMLSpanElement>>;
161
+ declare const AvatarImage: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React.RefAttributes<HTMLImageElement>, "ref"> & React.RefAttributes<HTMLImageElement>>;
162
+ declare const AvatarFallback: React.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
163
+
164
+ declare const badgeVariants: (props?: ({
165
+ variant?: "default" | "destructive" | "success" | "warning" | "outline" | "secondary" | null | undefined;
166
+ size?: "default" | "sm" | "lg" | null | undefined;
167
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
168
+ interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
169
+ asChild?: boolean;
170
+ }
171
+ declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLSpanElement>>;
172
+
173
+ declare const Breadcrumb: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
174
+ declare const BreadcrumbList: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>, "ref"> & React.RefAttributes<HTMLOListElement>>;
175
+ declare const BreadcrumbItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
176
+ declare const BreadcrumbLink: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>, "ref"> & {
177
+ asChild?: boolean;
178
+ } & React.RefAttributes<HTMLAnchorElement>>;
179
+ declare const BreadcrumbPage: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
180
+ declare const BreadcrumbSeparator: {
181
+ ({ className, children, ...props }: React.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
182
+ displayName: string;
183
+ };
184
+ declare const BreadcrumbEllipsis: {
185
+ ({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
186
+ displayName: string;
187
+ };
188
+
189
+ declare const buttonVariants: (props?: ({
190
+ variant?: "default" | "destructive" | "link" | "outline" | "secondary" | "ghost" | "glass" | null | undefined;
191
+ size?: "default" | "xs" | "sm" | "lg" | "icon" | null | undefined;
192
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
193
+ type ButtonProps = React.ComponentPropsWithoutRef<"button"> & VariantProps<typeof buttonVariants> & {
194
+ asChild?: boolean;
195
+ isLoading?: boolean;
196
+ };
197
+ declare const Button: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
198
+ variant?: "default" | "destructive" | "link" | "outline" | "secondary" | "ghost" | "glass" | null | undefined;
199
+ size?: "default" | "xs" | "sm" | "lg" | "icon" | null | undefined;
200
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & {
201
+ asChild?: boolean;
202
+ isLoading?: boolean;
203
+ } & React.RefAttributes<HTMLButtonElement>>;
204
+
205
+ declare function Calendar({ className, classNames, showOutsideDays, captionLayout, buttonVariant, formatters, components, ...props }: React.ComponentProps<typeof DayPicker> & {
206
+ buttonVariant?: React.ComponentProps<typeof Button>["variant"];
207
+ }): react_jsx_runtime.JSX.Element;
208
+ declare function CalendarDayButton({ className, day, modifiers, ...props }: React.ComponentProps<typeof DayButton>): react_jsx_runtime.JSX.Element;
209
+
210
+ /**
211
+ * Caption renders supplementary text beneath an image, table, chart, or form
212
+ * field. It is muted by default and uses the `xs` / `2xs` size tokens.
213
+ *
214
+ * Element selection:
215
+ * figcaption — inside a <figure> (image or chart captions)
216
+ * small — inline de-emphasis (legal, fine print)
217
+ * span — inline, no extra semantics
218
+ * p — block paragraph-level note
219
+ */
220
+ declare const captionVariants: (props?: ({
221
+ size?: "xs" | "sm" | "2xs" | null | undefined;
222
+ tone?: "default" | "destructive" | "success" | "warning" | "subtle" | "primary" | null | undefined;
223
+ align?: "center" | "right" | "left" | null | undefined;
224
+ withIcon?: boolean | null | undefined;
225
+ truncate?: boolean | null | undefined;
226
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
227
+ type CaptionElement = "figcaption" | "small" | "span" | "p";
228
+ interface CaptionProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof captionVariants> {
229
+ /** Rendered HTML element. Defaults to `figcaption`. */
230
+ element?: CaptionElement;
231
+ /**
232
+ * Optional leading icon node (e.g. `<Icon name="Info" className="size-3" />`).
233
+ * Automatically enables the flex-row icon layout.
234
+ */
235
+ icon?: React.ReactNode;
236
+ }
237
+ declare const Caption: React.ForwardRefExoticComponent<CaptionProps & React.RefAttributes<HTMLElement>>;
238
+
239
+ declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
240
+ declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
241
+ declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
242
+ declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
243
+ declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
244
+ declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
245
+
246
+ declare const checkboxVariants: (props?: ({
247
+ size?: "default" | "sm" | "lg" | null | undefined;
248
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
249
+ type CheckboxProps = React.ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root> & VariantProps<typeof checkboxVariants>;
250
+ declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
251
+ size?: "default" | "sm" | "lg" | null | undefined;
252
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React.RefAttributes<HTMLButtonElement>>;
253
+
254
+ declare const Collapsible: React.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & React.RefAttributes<HTMLDivElement>>;
255
+ declare const CollapsibleTrigger: React.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
256
+ declare const CollapsibleContent: React.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
257
+
258
+ declare const containerVariants: (props?: ({
259
+ variant?: "glass" | "solid" | "bordered" | null | undefined;
260
+ rounded?: "none" | "sm" | "lg" | "md" | "xl" | "2xl" | null | undefined;
261
+ padding?: "none" | "sm" | "lg" | "md" | "xl" | null | undefined;
262
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
263
+ type ContainerBaseProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof containerVariants>;
264
+ interface ContainerProps extends ContainerBaseProps {
265
+ header?: React.ReactNode;
266
+ footer?: React.ReactNode;
267
+ actions?: React.ReactNode;
268
+ loading?: boolean;
269
+ }
270
+ declare const Container: React.ForwardRefExoticComponent<ContainerProps & React.RefAttributes<HTMLDivElement>>;
271
+
272
+ declare const Dialog: React.FC<DialogPrimitive.DialogProps>;
273
+ declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
274
+ declare const DialogPortal: React.FC<DialogPrimitive.DialogPortalProps>;
275
+ declare const DialogClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
276
+ declare const DialogOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
277
+ declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
278
+ hideClose?: boolean;
279
+ } & React.RefAttributes<HTMLDivElement>>;
280
+ declare const DialogHeader: {
281
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
282
+ displayName: string;
283
+ };
284
+ declare const DialogFooter: {
285
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
286
+ displayName: string;
287
+ };
288
+ declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
289
+ declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
290
+
291
+ declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
292
+ declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
293
+ declare const DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
294
+ declare const DropdownMenuPortal: React.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
295
+ declare const DropdownMenuSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
296
+ declare const DropdownMenuRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
297
+ declare const DropdownMenuSubTrigger: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
298
+ inset?: boolean;
299
+ } & React.RefAttributes<HTMLDivElement>>;
300
+ declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
301
+ declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
302
+ declare const DropdownMenuItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
303
+ inset?: boolean;
304
+ } & React.RefAttributes<HTMLDivElement>>;
305
+ declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
306
+ declare const DropdownMenuRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
307
+ declare const DropdownMenuLabel: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
308
+ inset?: boolean;
309
+ } & React.RefAttributes<HTMLDivElement>>;
310
+ declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
311
+ declare const DropdownMenuShortcut: {
312
+ ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
313
+ displayName: string;
314
+ };
315
+
316
+ declare const Drawer: {
317
+ ({ shouldScaleBackground, ...props }: React.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
318
+ displayName: string;
319
+ };
320
+ declare const DrawerTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
321
+ declare const DrawerPortal: typeof vaul.Portal;
322
+ declare const DrawerClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
323
+ declare const DrawerOverlay: React.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
324
+ declare const DrawerContent: React.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
325
+ declare const DrawerHeader: {
326
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
327
+ displayName: string;
328
+ };
329
+ declare const DrawerFooter: {
330
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
331
+ displayName: string;
332
+ };
333
+ declare const DrawerTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
334
+ declare const DrawerDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
335
+
336
+ type NativeInputProps = Omit<React.ComponentPropsWithoutRef<"input">, "type" | "children" | "value" | "onChange">;
337
+ interface FileDropzoneProps extends NativeInputProps {
338
+ error?: boolean;
339
+ value?: unknown;
340
+ helperText?: React.ReactNode;
341
+ onChange?: (event: React.ChangeEvent<HTMLInputElement> | {
342
+ target: {
343
+ name?: string;
344
+ files: FileList | null;
345
+ };
346
+ }) => void;
347
+ onFilesSelected?: (files: File[]) => void;
348
+ accept?: string;
349
+ }
350
+ declare const FileDropzone: React.ForwardRefExoticComponent<FileDropzoneProps & React.RefAttributes<HTMLInputElement>>;
351
+
352
+ declare const InputOTP: React.ForwardRefExoticComponent<((Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
353
+ value?: string;
354
+ onChange?: (newValue: string) => unknown;
355
+ maxLength: number;
356
+ textAlign?: "left" | "center" | "right";
357
+ onComplete?: (...args: any[]) => unknown;
358
+ pushPasswordManagerStrategy?: "increase-width" | "none";
359
+ pasteTransformer?: (pasted: string) => string;
360
+ containerClassName?: string;
361
+ noScriptCSSFallback?: string | null;
362
+ } & {
363
+ render: (props: input_otp.RenderProps) => React.ReactNode;
364
+ children?: never;
365
+ } & React.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
366
+ value?: string;
367
+ onChange?: (newValue: string) => unknown;
368
+ maxLength: number;
369
+ textAlign?: "left" | "center" | "right";
370
+ onComplete?: (...args: any[]) => unknown;
371
+ pushPasswordManagerStrategy?: "increase-width" | "none";
372
+ pasteTransformer?: (pasted: string) => string;
373
+ containerClassName?: string;
374
+ noScriptCSSFallback?: string | null;
375
+ } & {
376
+ render?: never;
377
+ children: React.ReactNode;
378
+ } & React.RefAttributes<HTMLInputElement>, "ref">) & {
379
+ /** When true, active slot uses error (rose) accent instead of primary. */
380
+ invalid?: boolean;
381
+ }) & React.RefAttributes<HTMLInputElement>>;
382
+ declare const InputOTPGroup: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
383
+ declare const InputOTPSlot: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
384
+ index: number;
385
+ } & React.RefAttributes<HTMLDivElement>>>;
386
+ declare const InputOTPSeparator: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
387
+
388
+ declare const inputVariants: (props?: ({
389
+ size?: "default" | "sm" | "lg" | null | undefined;
390
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
391
+ interface InputProps extends Omit<React.ComponentPropsWithoutRef<"input">, "size">, VariantProps<typeof inputVariants> {
392
+ error?: boolean;
393
+ /** @deprecated use `error` */
394
+ invalid?: boolean;
395
+ }
396
+ declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
397
+
398
+ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
399
+ declare const RadioGroupItem: React.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
400
+
401
+ interface RichTextEditorProps {
402
+ value?: string;
403
+ onChange?: (value: string) => void;
404
+ placeholder?: string;
405
+ className?: string;
406
+ disabled?: boolean;
407
+ }
408
+ declare const RichTextEditor: ({ value, onChange, placeholder, className, disabled, }: RichTextEditorProps) => react_jsx_runtime.JSX.Element | null;
409
+
410
+ declare const Select: React.FC<SelectPrimitive.SelectProps>;
411
+ declare const SelectGroup: React.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React.RefAttributes<HTMLDivElement>>;
412
+ declare const SelectValue: React.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React.RefAttributes<HTMLSpanElement>>;
413
+ declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
414
+ declare const SelectScrollUpButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
415
+ declare const SelectScrollDownButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
416
+ declare const SelectContent: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
417
+ declare const SelectLabel: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
418
+ declare const SelectItem: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
419
+ declare const SelectSeparator: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
420
+
421
+ declare const switchRootVariants: (props?: ({
422
+ size?: "default" | "sm" | null | undefined;
423
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
424
+ declare const switchThumbVariants: (props?: ({
425
+ size?: "default" | "sm" | null | undefined;
426
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
427
+ interface SwitchProps extends Omit<React.ComponentPropsWithoutRef<typeof SwitchPrimitives.Root>, "children">, VariantProps<typeof switchRootVariants> {
428
+ label?: React.ReactNode;
429
+ description?: React.ReactNode;
430
+ error?: string;
431
+ }
432
+ declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;
433
+
434
+ interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
435
+ error?: boolean;
436
+ resize?: keyof typeof resizeClasses;
437
+ }
438
+ declare const resizeClasses: {
439
+ readonly none: "resize-none";
440
+ readonly vertical: "resize-y";
441
+ readonly horizontal: "resize-x";
442
+ readonly both: "resize";
443
+ };
444
+ declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
445
+
446
+ type FormFieldVariant = "input" | "textarea" | "checkbox" | "switch" | "select" | "async-select" | "radio" | "otp" | "richtext" | "dropzone";
447
+ type FormFieldRenderProps = Omit<InputProps, "id" | "name"> & {
448
+ ref?: React.Ref<unknown>;
449
+ };
450
+ /** `value` must not be \"\" — Radix treats that as “no selection”; use placeholder instead. */
451
+ type FormFieldSelectItem = {
452
+ value: string;
453
+ label: React.ReactNode;
454
+ disabled?: boolean;
455
+ };
456
+ type FormFieldSelectConfig = {
457
+ placeholder?: string;
458
+ items: FormFieldSelectItem[];
459
+ triggerClassName?: string;
460
+ contentClassName?: string;
461
+ } & Omit<React.ComponentPropsWithoutRef<typeof Select>, "value" | "onValueChange" | "children">;
462
+ type FormFieldRadioOption = {
463
+ value: string;
464
+ label: React.ReactNode;
465
+ disabled?: boolean;
466
+ id?: string;
467
+ };
468
+ type FormFieldRadioConfig = {
469
+ options: FormFieldRadioOption[];
470
+ groupClassName?: string;
471
+ } & Omit<React.ComponentPropsWithoutRef<typeof RadioGroup>, "value" | "onValueChange" | "children">;
472
+ type FormFieldOtpConfig = {
473
+ maxLength: number;
474
+ /** Slot index groups; default one group `0..maxLength-1`. Example: `[[0,1,2],[3,4,5]]` with separators between. */
475
+ groups?: number[][];
476
+ containerClassName?: string;
477
+ } & Omit<React.ComponentPropsWithoutRef<typeof InputOTP>, "maxLength" | "value" | "onChange" | "containerClassName" | "render" | "invalid">;
478
+ type FormFieldDropzoneConfig = Omit<FileDropzoneProps, "id" | "name" | "onChange" | "onBlur" | "ref" | "disabled" | "error" | "value">;
479
+ type FormFieldAsyncSelectConfig = Omit<AsyncSelectProps, "value" | "onValueChange" | "disabled" | "error" | "name">;
480
+ interface FormFieldProps<TFieldValues extends FieldValues> {
481
+ name: Path<TFieldValues>;
482
+ /** When omitted, no visible label is rendered; use `aria-label` on controls or descriptions for a11y. */
483
+ label?: React.ReactNode;
484
+ register?: UseFormRegister<TFieldValues>;
485
+ control?: Control<TFieldValues>;
486
+ rules?: RegisterOptions<TFieldValues, Path<TFieldValues>>;
487
+ description?: React.ReactNode;
488
+ required?: boolean;
489
+ error?: React.ReactNode;
490
+ /** Default `input`. Non-input variants need `control` (Controller). */
491
+ variant?: FormFieldVariant;
492
+ inputProps?: FormFieldRenderProps;
493
+ textareaProps?: Omit<TextareaProps, "id" | "name">;
494
+ checkboxProps?: Omit<CheckboxProps, "checked" | "onCheckedChange" | "id">;
495
+ switchProps?: Omit<SwitchProps, "checked" | "onCheckedChange" | "label" | "description" | "error" | "id">;
496
+ selectProps?: FormFieldSelectConfig;
497
+ radioProps?: FormFieldRadioConfig;
498
+ otpProps?: FormFieldOtpConfig;
499
+ richTextProps?: Omit<RichTextEditorProps, "value" | "onChange" | "disabled">;
500
+ dropzoneProps?: FormFieldDropzoneConfig;
501
+ asyncSelectProps?: FormFieldAsyncSelectConfig;
502
+ className?: string;
503
+ renderInput?: (props: FormFieldRenderProps & {
504
+ id: string;
505
+ name: string;
506
+ "aria-describedby"?: string;
507
+ error?: boolean;
508
+ }) => React.ReactNode;
509
+ }
510
+ declare function FormField<TFieldValues extends FieldValues>({ name, label, register, control, rules, description, required, error, variant, inputProps, textareaProps, checkboxProps, switchProps, selectProps, radioProps, otpProps, richTextProps, dropzoneProps, asyncSelectProps, className, renderInput, }: FormFieldProps<TFieldValues>): react_jsx_runtime.JSX.Element;
511
+
512
+ /**
513
+ * Heading levels map to the correct HTML element and default size/weight from
514
+ * the typography token scale. The `display` prop opts into the display font
515
+ * family (Cal Sans / Inter Variable) for hero and marketing contexts.
516
+ */
517
+ declare const headingVariants: (props?: ({
518
+ level?: 1 | 2 | 3 | 4 | 5 | 6 | null | undefined;
519
+ size?: "xs" | "sm" | "lg" | "base" | "xl" | "2xs" | "2xl" | "3xl" | "4xl" | "5xl" | null | undefined;
520
+ weight?: "bold" | "medium" | "semibold" | "regular" | null | undefined;
521
+ tone?: "default" | "destructive" | "muted" | "primary" | null | undefined;
522
+ align?: "center" | "right" | "left" | null | undefined;
523
+ display?: boolean | null | undefined;
524
+ truncate?: boolean | null | undefined;
525
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
526
+ type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
527
+ interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof headingVariants> {
528
+ /** Semantic heading level — renders the correct h1–h6 element. */
529
+ level?: HeadingLevel;
530
+ /** Use the display (Cal Sans) typeface. */
531
+ display?: boolean;
532
+ }
533
+ declare const Heading: React.ForwardRefExoticComponent<HeadingProps & React.RefAttributes<HTMLHeadingElement>>;
534
+
535
+ interface IconComponentProps extends React.SVGAttributes<SVGSVGElement> {
536
+ size?: number | string;
537
+ strokeWidth?: number | string;
538
+ absoluteStrokeWidth?: boolean;
539
+ }
540
+ type IconComponent = React.FC<IconComponentProps>;
541
+ /**
542
+ * Register icons so they can be used via `<Icon name="..." />`.
543
+ * Call once at app startup with only the icons you need.
544
+ *
545
+ * @example
546
+ * ```ts
547
+ * import { registerIcons } from "@2urgse/ui";
548
+ * import { User, Settings, Home, FileText } from "lucide-react";
549
+ *
550
+ * registerIcons({ User, Settings, Home, FileText });
551
+ * ```
552
+ */
553
+ declare function registerIcons(icons: Record<string, IconComponent>): void;
554
+ /**
555
+ * Retrieve a registered icon by name. Returns undefined if not found.
556
+ */
557
+ declare function getIcon(name: string): IconComponent | undefined;
558
+ interface IconProps extends IconComponentProps {
559
+ /** Name of a registered icon (PascalCase, matching the key passed to registerIcons) */
560
+ name: string;
561
+ /** Fallback content when the icon isn't registered */
562
+ fallback?: React.ReactNode;
563
+ }
564
+ declare const Icon: React.FC<IconProps>;
565
+
566
+ interface InputGroupProps extends React.HTMLAttributes<HTMLDivElement> {
567
+ error?: boolean;
568
+ }
569
+ /**
570
+ * Glass shell with leading icon + borderless input (`focus-within` matches field tokens).
571
+ */
572
+ declare const InputGroup: React.ForwardRefExoticComponent<InputGroupProps & React.RefAttributes<HTMLDivElement>>;
573
+ declare const InputGroupIcon: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLSpanElement> & React.RefAttributes<HTMLSpanElement>>;
574
+ type InputGroupInputProps = React.InputHTMLAttributes<HTMLInputElement>;
575
+ declare const InputGroupInput: React.ForwardRefExoticComponent<InputGroupInputProps & React.RefAttributes<HTMLInputElement>>;
576
+ /**
577
+ * Left padding for `SelectTrigger` so its label lines up with text after a default
578
+ * {@link InputGroup} (`px-4` + `gap-3` + 20px icon → `pl-12`).
579
+ */
580
+ declare const inputGroupSelectTriggerTextAlignClass = "pl-12";
581
+
582
+ declare const labelVariants: (props?: ({
583
+ tone?: "default" | "muted" | null | undefined;
584
+ size?: "sm" | "lg" | "md" | null | undefined;
585
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
586
+ interface LabelProps extends React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>, VariantProps<typeof labelVariants> {
587
+ required?: boolean;
588
+ }
589
+ declare const Label: React.ForwardRefExoticComponent<LabelProps & React.RefAttributes<HTMLLabelElement>>;
590
+
591
+ declare const Pagination: {
592
+ ({ className, ...props }: React.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
593
+ displayName: string;
594
+ };
595
+ declare const PaginationContent: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React.RefAttributes<HTMLUListElement>>;
596
+ declare const PaginationItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
597
+ type PaginationLinkProps = {
598
+ isActive?: boolean;
599
+ } & Pick<ButtonProps, "size"> & React.ComponentProps<"a">;
600
+ declare const PaginationLink: {
601
+ ({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
602
+ displayName: string;
603
+ };
604
+ declare const PaginationPrevious: {
605
+ ({ className, ...props }: Omit<React.ComponentProps<typeof PaginationLink>, "size">): react_jsx_runtime.JSX.Element;
606
+ displayName: string;
607
+ };
608
+ declare const PaginationNext: {
609
+ ({ className, ...props }: Omit<React.ComponentProps<typeof PaginationLink>, "size">): react_jsx_runtime.JSX.Element;
610
+ displayName: string;
611
+ };
612
+ declare const PaginationEllipsis: {
613
+ ({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
614
+ displayName: string;
615
+ };
616
+
617
+ declare const Popover: React.FC<PopoverPrimitive.PopoverProps>;
618
+ declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>>;
619
+ declare const PopoverAnchor: React.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React.RefAttributes<HTMLDivElement>>;
620
+ interface PopoverContentProps extends React.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content> {
621
+ showArrow?: boolean;
622
+ }
623
+ declare const PopoverContent: React.ForwardRefExoticComponent<PopoverContentProps & React.RefAttributes<HTMLDivElement>>;
624
+
625
+ interface ProgressProps extends React.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root> {
626
+ value?: number;
627
+ max?: number;
628
+ showValue?: boolean;
629
+ label?: string;
630
+ variant?: "default" | "success" | "warning" | "error";
631
+ indeterminate?: boolean;
632
+ }
633
+ declare const Progress: React.ForwardRefExoticComponent<ProgressProps & React.RefAttributes<HTMLDivElement>>;
634
+
635
+ interface RichHtmlProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children" | "dangerouslySetInnerHTML"> {
636
+ /** HTML fragment (often from TipTap / a CMS / the server). */
637
+ html?: string | null;
638
+ /**
639
+ * When `true`, runs DOMPurify before rendering. Recommended for any user-controlled HTML.
640
+ * On the server there is no `window`, so the inner HTML stays empty until the client;
641
+ * `suppressHydrationWarning` is enabled by default whenever this is true to tolerate that mismatch.
642
+ */
643
+ sanitize?: boolean;
644
+ /** Merged over the default profile (`USE_PROFILES: { html: true }`). */
645
+ sanitizeConfig?: Config;
646
+ }
647
+ declare const RichHtml: React.ForwardRefExoticComponent<RichHtmlProps & React.RefAttributes<HTMLDivElement>>;
648
+
649
+ declare const ScrollArea: React.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
650
+ declare const ScrollBar: React.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaScrollbarProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
651
+
652
+ declare const separatorVariants: (props?: ({
653
+ orientation?: "horizontal" | "vertical" | null | undefined;
654
+ line?: "solid" | "dashed" | "dotted" | null | undefined;
655
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
656
+ type SeparatorProps = React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root> & VariantProps<typeof separatorVariants> & {
657
+ label?: React.ReactNode;
658
+ /** @deprecated Use `line` (cva variant) instead */
659
+ variant?: "solid" | "dashed" | "dotted";
660
+ };
661
+ declare const Separator: React.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & VariantProps<(props?: ({
662
+ orientation?: "horizontal" | "vertical" | null | undefined;
663
+ line?: "solid" | "dashed" | "dotted" | null | undefined;
664
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & {
665
+ label?: React.ReactNode;
666
+ /** @deprecated Use `line` (cva variant) instead */
667
+ variant?: "solid" | "dashed" | "dotted";
668
+ } & React.RefAttributes<HTMLDivElement>>;
669
+
670
+ declare const Sheet: React.FC<DialogPrimitive.DialogProps>;
671
+ declare const SheetTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
672
+ declare const SheetClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
673
+ declare const SheetPortal: React.FC<DialogPrimitive.DialogPortalProps>;
674
+ declare const SheetOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
675
+ declare const sheetVariants: (props?: ({
676
+ side?: "top" | "right" | "bottom" | "left" | null | undefined;
677
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
678
+ interface SheetContentProps extends React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
679
+ }
680
+ declare const SheetContent: React.ForwardRefExoticComponent<SheetContentProps & React.RefAttributes<HTMLDivElement>>;
681
+ declare const SheetHeader: {
682
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
683
+ displayName: string;
684
+ };
685
+ declare const SheetFooter: {
686
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
687
+ displayName: string;
688
+ };
689
+ declare const SheetTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
690
+ declare const SheetDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
691
+
692
+ type TooltipProps = React.ComponentPropsWithoutRef<typeof TooltipPrimitive.Root>;
693
+ declare const TooltipProvider: React.FC<TooltipPrimitive.TooltipProviderProps>;
694
+ declare const Tooltip: {
695
+ ({ ...props }: TooltipProps): react_jsx_runtime.JSX.Element;
696
+ displayName: string;
697
+ };
698
+ declare const TooltipTrigger: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>>;
699
+ declare const TooltipContent: React.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
700
+ arrow?: boolean;
701
+ } & React.RefAttributes<HTMLDivElement>>;
702
+
703
+ type SidebarContext = {
704
+ state: "expanded" | "collapsed";
705
+ open: boolean;
706
+ setOpen: (open: boolean) => void;
707
+ openMobile: boolean;
708
+ setOpenMobile: (open: boolean) => void;
709
+ isMobile: boolean;
710
+ toggleSidebar: () => void;
711
+ };
712
+ declare const SidebarContext: React.Context<SidebarContext | null>;
713
+ declare function useSidebar(): SidebarContext;
714
+ declare const SidebarProvider: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
715
+ defaultOpen?: boolean;
716
+ open?: boolean;
717
+ onOpenChange?: (open: boolean) => void;
718
+ }, "ref"> & React.RefAttributes<HTMLDivElement>>;
719
+ declare const Sidebar: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
720
+ side?: "left" | "right";
721
+ variant?: "sidebar" | "floating" | "inset";
722
+ collapsible?: "offcanvas" | "icon" | "none";
723
+ }, "ref"> & React.RefAttributes<HTMLDivElement>>;
724
+ declare const SidebarTrigger: React.ForwardRefExoticComponent<Omit<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
725
+ variant?: "default" | "destructive" | "link" | "outline" | "secondary" | "ghost" | "glass" | null | undefined;
726
+ size?: "default" | "xs" | "sm" | "lg" | "icon" | null | undefined;
727
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & {
728
+ asChild?: boolean;
729
+ isLoading?: boolean;
730
+ } & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
731
+ declare const SidebarRail: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
732
+ declare const SidebarInset: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
733
+ declare const SidebarInput: React.ForwardRefExoticComponent<Omit<InputProps & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
734
+ declare const SidebarHeader: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
735
+ declare const SidebarFooter: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
736
+ declare const SidebarSeparator: React.ForwardRefExoticComponent<Omit<Omit<SeparatorPrimitive.SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & VariantProps<(props?: ({
737
+ orientation?: "horizontal" | "vertical" | null | undefined;
738
+ line?: "solid" | "dashed" | "dotted" | null | undefined;
739
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & {
740
+ label?: React.ReactNode;
741
+ variant?: "solid" | "dashed" | "dotted";
742
+ } & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
743
+ declare const SidebarContent: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
744
+ declare const SidebarGroup: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
745
+ declare const SidebarGroupLabel: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
746
+ asChild?: boolean;
747
+ showLabel?: boolean;
748
+ }, "ref"> & React.RefAttributes<HTMLDivElement>>;
749
+ declare const SidebarGroupAction: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLButtonElement> & React.ButtonHTMLAttributes<HTMLButtonElement> & {
750
+ asChild?: boolean;
751
+ }, "ref"> & React.RefAttributes<HTMLButtonElement>>;
752
+ declare const SidebarGroupContent: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
753
+ declare const SidebarMenu: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React.RefAttributes<HTMLUListElement>>;
754
+ declare const SidebarMenuItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
755
+ declare const sidebarMenuButtonVariants: (props?: ({
756
+ variant?: "default" | "outline" | null | undefined;
757
+ size?: "default" | "sm" | "lg" | null | undefined;
758
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
759
+ declare const SidebarMenuButton: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLButtonElement> & React.ButtonHTMLAttributes<HTMLButtonElement> & {
760
+ asChild?: boolean;
761
+ isActive?: boolean;
762
+ tooltip?: string | React.ComponentProps<typeof TooltipContent>;
763
+ } & VariantProps<(props?: ({
764
+ variant?: "default" | "outline" | null | undefined;
765
+ size?: "default" | "sm" | "lg" | null | undefined;
766
+ } & class_variance_authority_types.ClassProp) | undefined) => string>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
767
+ declare const SidebarMenuAction: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLButtonElement> & React.ButtonHTMLAttributes<HTMLButtonElement> & {
768
+ asChild?: boolean;
769
+ showOnHover?: boolean;
770
+ }, "ref"> & React.RefAttributes<HTMLButtonElement>>;
771
+ declare const SidebarMenuBadge: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
772
+ declare const SidebarMenuSkeleton: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
773
+ showIcon?: boolean;
774
+ }, "ref"> & React.RefAttributes<HTMLDivElement>>;
775
+ declare const SidebarMenuSub: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React.RefAttributes<HTMLUListElement>>;
776
+ declare const SidebarMenuSubItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
777
+ declare const SidebarMenuSubButton: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLAnchorElement> & React.AnchorHTMLAttributes<HTMLAnchorElement> & {
778
+ asChild?: boolean;
779
+ size?: "sm" | "md";
780
+ isActive?: boolean;
781
+ }, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
782
+
783
+ declare const skeletonVariants: (props?: ({
784
+ rounded?: "default" | "sm" | "lg" | "full" | null | undefined;
785
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
786
+ type SkeletonProps = React.HTMLAttributes<HTMLDivElement> & VariantProps<typeof skeletonVariants>;
787
+ declare const Skeleton: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & VariantProps<(props?: ({
788
+ rounded?: "default" | "sm" | "lg" | "full" | null | undefined;
789
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React.RefAttributes<HTMLDivElement>>;
790
+
791
+ interface SliderProps extends React.ComponentPropsWithoutRef<typeof SliderPrimitive.Root> {
792
+ label?: React.ReactNode;
793
+ showValue?: boolean;
794
+ minLabel?: React.ReactNode;
795
+ maxLabel?: React.ReactNode;
796
+ }
797
+ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<HTMLSpanElement>>;
798
+
799
+ declare const Table: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableElement> & React.RefAttributes<HTMLTableElement>>;
800
+ declare const TableHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
801
+ declare const TableBody: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
802
+ declare const TableFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableSectionElement> & React.RefAttributes<HTMLTableSectionElement>>;
803
+ declare const TableRow: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableRowElement> & React.RefAttributes<HTMLTableRowElement>>;
804
+ declare const TableHead: React.ForwardRefExoticComponent<React.ThHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
805
+ declare const TableCell: React.ForwardRefExoticComponent<React.TdHTMLAttributes<HTMLTableCellElement> & React.RefAttributes<HTMLTableCellElement>>;
806
+ declare const TableCaption: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLTableCaptionElement> & React.RefAttributes<HTMLTableCaptionElement>>;
807
+
808
+ declare const Tabs: React.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>>;
809
+ declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
810
+ declare const TabsTrigger: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
811
+ declare const TabsContent: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
812
+
813
+ type TextElement = "p" | "span" | "label" | "div";
814
+ declare const textVariants: (props?: ({
815
+ element?: "div" | "label" | "p" | "span" | null | undefined;
816
+ size?: "xs" | "sm" | "lg" | "base" | "xl" | "2xl" | "3xl" | "4xl" | null | undefined;
817
+ weight?: "bold" | "normal" | "medium" | "semibold" | null | undefined;
818
+ tone?: "default" | "destructive" | "success" | "warning" | "muted" | "subtle" | null | undefined;
819
+ align?: "center" | "right" | "left" | null | undefined;
820
+ truncate?: boolean | null | undefined;
821
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
822
+ interface TextProps extends React.HTMLAttributes<HTMLElement>, VariantProps<typeof textVariants> {
823
+ element?: TextElement;
824
+ }
825
+ declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttributes<HTMLElement>>;
826
+
827
+ declare const ToastProvider: React.FC<ToastPrimitive.ToastProviderProps>;
828
+ declare const ToastViewport: React.ForwardRefExoticComponent<Omit<ToastPrimitive.ToastViewportProps & React.RefAttributes<HTMLOListElement>, "ref"> & React.RefAttributes<HTMLOListElement>>;
829
+ declare const toastVariants: (props?: ({
830
+ variant?: "default" | "destructive" | "success" | "warning" | "danger" | null | undefined;
831
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
832
+ type ToastProps = React.ComponentPropsWithoutRef<typeof ToastPrimitive.Root> & VariantProps<typeof toastVariants>;
833
+ declare const Toast: React.ForwardRefExoticComponent<Omit<ToastPrimitive.ToastProps & React.RefAttributes<HTMLLIElement>, "ref"> & VariantProps<(props?: ({
834
+ variant?: "default" | "destructive" | "success" | "warning" | "danger" | null | undefined;
835
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React.RefAttributes<HTMLLIElement>>;
836
+ declare const ToastAction: React.ForwardRefExoticComponent<Omit<ToastPrimitive.ToastActionProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
837
+ declare const ToastClose: React.ForwardRefExoticComponent<Omit<ToastPrimitive.ToastCloseProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
838
+ declare const ToastTitle: React.ForwardRefExoticComponent<Omit<ToastPrimitive.ToastTitleProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
839
+ declare const ToastDescription: React.ForwardRefExoticComponent<Omit<ToastPrimitive.ToastDescriptionProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
840
+
841
+ type ToastPayload = {
842
+ title?: ReactNode;
843
+ description?: ReactNode;
844
+ variant?: ToastProps["variant"];
845
+ duration?: number;
846
+ action?: {
847
+ label: ReactNode;
848
+ /** Required for screen readers (Radix). */
849
+ altText: string;
850
+ onClick: () => void;
851
+ };
852
+ };
853
+ type ToastRecord = ToastPayload & {
854
+ id: string;
855
+ };
856
+ /**
857
+ * Show a toast from anywhere (event handlers, effects, non-React code)
858
+ * as long as `<Toaster />` is mounted once near the app root.
859
+ */
860
+ declare function toast(payload: ToastPayload): string;
861
+ declare function dismissToast(id: string): void;
862
+
863
+ declare function useToast(): {
864
+ toasts: ToastRecord[];
865
+ toast: typeof toast;
866
+ dismiss: typeof dismissToast;
867
+ };
868
+ type ToasterProps = React.ComponentPropsWithoutRef<typeof ToastProvider> & {
869
+ viewportClassName?: string;
870
+ };
871
+ /**
872
+ * Mount once at the app root. Renders the Radix provider, viewport, and queued toasts.
873
+ */
874
+ declare function Toaster({ duration, label, swipeDirection, viewportClassName, ...providerProps }: ToasterProps): react_jsx_runtime.JSX.Element;
875
+ declare namespace Toaster {
876
+ var displayName: string;
877
+ }
878
+
879
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AppShell, type AppShellProps, AspectRatio, type AspectRatioProps, AsyncSelect, type AsyncSelectFetcher, type AsyncSelectPage, type AsyncSelectProps, Avatar, AvatarFallback, AvatarImage, type AvatarProps, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, CalendarDayButton, Caption, type CaptionProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, type CheckboxProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Container, type ContainerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, 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, FileDropzone, type FileDropzoneProps, FormField, type FormFieldAsyncSelectConfig, type FormFieldDropzoneConfig, type FormFieldOtpConfig, type FormFieldProps, type FormFieldRadioConfig, type FormFieldRadioOption, type FormFieldSelectConfig, type FormFieldSelectItem, type FormFieldVariant, Heading, type HeadingProps, Icon, type IconComponent, type IconComponentProps, type IconProps, Input, InputGroup, InputGroupIcon, InputGroupInput, type InputGroupInputProps, type InputGroupProps, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, type LabelProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, type PopoverContentProps, PopoverTrigger, Progress, type ProgressProps, RadioGroup, RadioGroupItem, RichHtml, type RichHtmlProps, RichTextEditor, type RichTextEditorProps, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, 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, type SkeletonProps, Slider, type SliderProps, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Text, type TextProps, Textarea, type TextareaProps, Toast, ToastAction, ToastClose, ToastDescription, type ToastPayload, type ToastProps, ToastProvider, type ToastRecord, ToastTitle, ToastViewport, Toaster, type ToasterProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, captionVariants, checkboxVariants, containerVariants, dismissToast, getIcon, headingVariants, inputGroupSelectTriggerTextAlignClass, inputVariants, labelVariants, registerIcons, separatorVariants, sidebarMenuButtonVariants, skeletonVariants, switchRootVariants, switchThumbVariants, textVariants, toast, toastVariants, useSidebar, useToast };