luaniverse 4.0.40

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,1229 @@
1
+ import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
2
+ import * as React from 'react';
3
+ import React__default, { SVGProps } from 'react';
4
+ import { VariantProps } from 'class-variance-authority';
5
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
6
+ import * as input_otp from 'input-otp';
7
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
8
+ import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
9
+ import * as react_jsx_runtime from 'react/jsx-runtime';
10
+ import * as DialogPrimitive from '@radix-ui/react-dialog';
11
+ import { ClassValue } from 'clsx';
12
+ import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
13
+ import * as SelectPrimitive from '@radix-ui/react-select';
14
+ import * as LabelPrimitive from '@radix-ui/react-label';
15
+ import * as SwitchPrimitives from '@radix-ui/react-switch';
16
+ import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
17
+ import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
18
+
19
+ declare const buttonVariants: (props?: ({
20
+ variant?: "default" | "primary" | "outline" | "tertiary" | "secondary" | "muted" | "destructive" | null | undefined;
21
+ size?: "default" | "small" | "large" | null | undefined;
22
+ hasStartAdornment?: boolean | null | undefined;
23
+ hasEndAdornment?: boolean | null | undefined;
24
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
25
+ interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
26
+ asChild?: boolean;
27
+ startAdornment?: React.ReactNode;
28
+ endAdornment?: React.ReactNode;
29
+ loading?: boolean;
30
+ 'aria-label'?: string;
31
+ 'aria-describedby'?: string;
32
+ }
33
+ declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
34
+
35
+ declare const iconButtonVariants: {
36
+ size: {
37
+ small: string;
38
+ default: string;
39
+ large: string;
40
+ };
41
+ };
42
+ interface IconButtonProps extends Omit<ButtonProps, 'startAdornment' | 'endAdornment'>, VariantProps<typeof buttonVariants> {
43
+ asChild?: boolean;
44
+ /**
45
+ * Accessible label for the icon button. Required for meaningful buttons.
46
+ * Should describe the action the button performs.
47
+ */
48
+ "aria-label"?: string;
49
+ /**
50
+ * Additional description for complex actions
51
+ */
52
+ "aria-describedby"?: string;
53
+ /**
54
+ * Loading state - shows spinner and disables interaction
55
+ */
56
+ loading?: boolean;
57
+ }
58
+ declare const IconButton: React.ForwardRefExoticComponent<IconButtonProps & React.RefAttributes<HTMLButtonElement>>;
59
+
60
+ interface InputProps extends React.ComponentProps<'input'> {
61
+ label?: string;
62
+ description?: string;
63
+ error?: string;
64
+ success?: string;
65
+ startAdornment?: React.ReactNode;
66
+ endAdornment?: React.ReactNode;
67
+ }
68
+ declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
69
+
70
+ declare const badgeVariants: (props?: ({
71
+ variant?: "default" | "outline" | "secondary" | "destructive" | "success" | "warning" | null | undefined;
72
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
73
+ interface BadgeProps extends React.ComponentProps<"span">, VariantProps<typeof badgeVariants> {
74
+ asChild?: boolean;
75
+ "aria-label"?: string;
76
+ }
77
+ declare const Badge: React.ForwardRefExoticComponent<Omit<BadgeProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
78
+
79
+ interface TextareaProps extends React.ComponentProps<'textarea'> {
80
+ description?: string;
81
+ error?: string;
82
+ success?: string;
83
+ resize?: 'none' | 'vertical' | 'horizontal' | 'both';
84
+ }
85
+ declare const Textarea: React.ForwardRefExoticComponent<Omit<TextareaProps, "ref"> & React.RefAttributes<HTMLTextAreaElement>>;
86
+
87
+ declare const Tabs: React.ForwardRefExoticComponent<TabsPrimitive.TabsProps & React.RefAttributes<HTMLDivElement>>;
88
+ declare const TabsList: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsListProps & React.RefAttributes<HTMLDivElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp | undefined) => string> & React.RefAttributes<HTMLDivElement>>;
89
+ declare const TabsTrigger: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp | undefined) => string> & React.RefAttributes<HTMLButtonElement>>;
90
+ declare const TabsContent: React.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp | undefined) => string> & React.RefAttributes<HTMLDivElement>>;
91
+
92
+ declare const InputOTP: React.ForwardRefExoticComponent<(Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
93
+ value?: string;
94
+ onChange?: (newValue: string) => unknown;
95
+ maxLength: number;
96
+ textAlign?: "left" | "center" | "right";
97
+ onComplete?: (...args: any[]) => unknown;
98
+ pushPasswordManagerStrategy?: "increase-width" | "none";
99
+ pasteTransformer?: (pasted: string) => string;
100
+ containerClassName?: string;
101
+ noScriptCSSFallback?: string | null;
102
+ } & {
103
+ render: (props: input_otp.RenderProps) => React.ReactNode;
104
+ children?: never;
105
+ } & React.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React.InputHTMLAttributes<HTMLInputElement>, "value" | "onChange" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
106
+ value?: string;
107
+ onChange?: (newValue: string) => unknown;
108
+ maxLength: number;
109
+ textAlign?: "left" | "center" | "right";
110
+ onComplete?: (...args: any[]) => unknown;
111
+ pushPasswordManagerStrategy?: "increase-width" | "none";
112
+ pasteTransformer?: (pasted: string) => string;
113
+ containerClassName?: string;
114
+ noScriptCSSFallback?: string | null;
115
+ } & {
116
+ render?: never;
117
+ children: React.ReactNode;
118
+ } & React.RefAttributes<HTMLInputElement>, "ref">) & React.RefAttributes<HTMLInputElement>>;
119
+ declare const InputOTPGroup: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
120
+ declare const InputOTPSlot: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
121
+ index: number;
122
+ } & React.RefAttributes<HTMLDivElement>>;
123
+ declare const InputOTPSeparator: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
124
+
125
+ declare const TooltipProvider: React.FC<TooltipPrimitive.TooltipProviderProps>;
126
+ declare const Tooltip: React.FC<TooltipPrimitive.TooltipProps>;
127
+ declare const TooltipTrigger: React.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React.RefAttributes<HTMLButtonElement>>;
128
+ declare const TooltipArrow: React.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipArrowProps & React.RefAttributes<SVGSVGElement>, "ref"> & React.RefAttributes<SVGSVGElement>>;
129
+ declare const TooltipContent: React.ForwardRefExoticComponent<Omit<TooltipPrimitive.TooltipContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
130
+
131
+ declare const Card: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
132
+ declare const CardHeader: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
133
+ declare const CardTitle: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
134
+ declare const CardDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
135
+ declare const CardContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
136
+ declare const CardFooter: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
137
+
138
+ type CarouselApi = UseEmblaCarouselType[1];
139
+ type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
140
+ type CarouselOptions = UseCarouselParameters[0];
141
+ type CarouselPlugin = UseCarouselParameters[1];
142
+ type CarouselProps = {
143
+ opts?: CarouselOptions;
144
+ plugins?: CarouselPlugin;
145
+ orientation?: "horizontal" | "vertical";
146
+ setApi?: (api: CarouselApi) => void;
147
+ };
148
+ declare const Carousel: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & CarouselProps & React.RefAttributes<HTMLDivElement>>;
149
+ declare const CarouselContent: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
150
+ declare const CarouselItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
151
+ declare const CarouselPrevious: React.ForwardRefExoticComponent<Omit<ButtonProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
152
+ declare const CarouselNext: React.ForwardRefExoticComponent<Omit<ButtonProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
153
+
154
+ declare const Dialog: React.FC<DialogPrimitive.DialogProps>;
155
+ declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
156
+ declare const DialogPortal: React.FC<DialogPrimitive.DialogPortalProps>;
157
+ declare const DialogClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
158
+ declare const DialogOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
159
+ declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
160
+ showClose?: boolean;
161
+ } & React.RefAttributes<HTMLDivElement>>;
162
+ declare const DialogHeader: {
163
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
164
+ displayName: string;
165
+ };
166
+ declare const DialogFooter: {
167
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
168
+ displayName: string;
169
+ };
170
+ declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
171
+ declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
172
+
173
+ declare const Sheet: React.FC<DialogPrimitive.DialogProps>;
174
+ declare const SheetTrigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
175
+ declare const SheetClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
176
+ declare const sheetVariants: (props?: ({
177
+ side?: "left" | "right" | "bottom" | "top" | null | undefined;
178
+ } & class_variance_authority_dist_types.ClassProp) | undefined) => string;
179
+ interface SheetContentProps extends React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
180
+ showClose?: boolean;
181
+ showOverlay?: boolean;
182
+ }
183
+ declare const SheetContent: React.ForwardRefExoticComponent<SheetContentProps & React.RefAttributes<HTMLDivElement>>;
184
+ declare const SheetHeader: {
185
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
186
+ displayName: string;
187
+ };
188
+ declare const SheetFooter: {
189
+ ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
190
+ displayName: string;
191
+ };
192
+ declare const SheetTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
193
+ declare const SheetDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
194
+
195
+ interface TypographyProps extends React__default.HTMLAttributes<HTMLElement> {
196
+ variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'body-xl' | 'body-lg' | 'body' | 'body-sm' | 'caption' | 'overline';
197
+ as?: keyof JSX.IntrinsicElements;
198
+ children: React__default.ReactNode;
199
+ }
200
+ declare const Typography: React__default.ForwardRefExoticComponent<TypographyProps & React__default.RefAttributes<HTMLElement>>;
201
+ declare const Heading1: React__default.ForwardRefExoticComponent<Omit<TypographyProps, "variant"> & React__default.RefAttributes<HTMLHeadingElement>>;
202
+ declare const Heading2: React__default.ForwardRefExoticComponent<Omit<TypographyProps, "variant"> & React__default.RefAttributes<HTMLHeadingElement>>;
203
+ declare const Heading3: React__default.ForwardRefExoticComponent<Omit<TypographyProps, "variant"> & React__default.RefAttributes<HTMLHeadingElement>>;
204
+ declare const Heading4: React__default.ForwardRefExoticComponent<Omit<TypographyProps, "variant"> & React__default.RefAttributes<HTMLHeadingElement>>;
205
+ declare const Heading5: React__default.ForwardRefExoticComponent<Omit<TypographyProps, "variant"> & React__default.RefAttributes<HTMLHeadingElement>>;
206
+ declare const Heading6: React__default.ForwardRefExoticComponent<Omit<TypographyProps, "variant"> & React__default.RefAttributes<HTMLHeadingElement>>;
207
+ declare const Text: React__default.ForwardRefExoticComponent<Omit<TypographyProps, "variant"> & {
208
+ size?: "xl" | "lg" | "default" | "sm";
209
+ } & React__default.RefAttributes<HTMLParagraphElement>>;
210
+ declare const Caption: React__default.ForwardRefExoticComponent<Omit<TypographyProps, "variant"> & React__default.RefAttributes<HTMLSpanElement>>;
211
+ declare const Overline: React__default.ForwardRefExoticComponent<Omit<TypographyProps, "variant"> & React__default.RefAttributes<HTMLSpanElement>>;
212
+ interface LinkProps extends React__default.AnchorHTMLAttributes<HTMLAnchorElement> {
213
+ variant?: 'primary' | 'secondary' | 'destructive' | 'subtle';
214
+ children: React__default.ReactNode;
215
+ }
216
+ declare const Link: React__default.ForwardRefExoticComponent<LinkProps & React__default.RefAttributes<HTMLAnchorElement>>;
217
+
218
+ type PaginationProps = React.ComponentProps<"nav"> & {
219
+ size?: "default" | "small";
220
+ };
221
+ declare const Pagination: React.ForwardRefExoticComponent<Omit<PaginationProps, "ref"> & React.RefAttributes<HTMLElement>>;
222
+ declare const PaginationContent: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React.RefAttributes<HTMLUListElement>>;
223
+ declare const PaginationItem: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React.RefAttributes<HTMLLIElement>>;
224
+ type PaginationLinkProps = {
225
+ isActive?: boolean;
226
+ } & React.ComponentProps<"a">;
227
+ declare const PaginationLink: React.ForwardRefExoticComponent<Omit<PaginationLinkProps, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
228
+ declare const PaginationPrevious: React.ForwardRefExoticComponent<Omit<Omit<PaginationLinkProps, "ref"> & React.RefAttributes<HTMLAnchorElement>, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
229
+ declare const PaginationNext: React.ForwardRefExoticComponent<Omit<Omit<PaginationLinkProps, "ref"> & React.RefAttributes<HTMLAnchorElement>, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
230
+ declare const PaginationEllipsis: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
231
+
232
+ declare function cn(...inputs: ClassValue[]): string;
233
+
234
+ type LogoSpinnerProps = {
235
+ className?: string;
236
+ size?: number;
237
+ };
238
+ declare const LogoSpinner: React.FC<LogoSpinnerProps>;
239
+
240
+ interface IconProps extends SVGProps<SVGSVGElement> {
241
+ size?: number;
242
+ color?: string;
243
+ /**
244
+ * Accessible label for the icon. Required for meaningful icons.
245
+ * If not provided, the icon will be marked as decorative (aria-hidden="true")
246
+ */
247
+ "aria-label"?: string;
248
+ /**
249
+ * Additional description for complex icons
250
+ */
251
+ "aria-describedby"?: string;
252
+ /**
253
+ * Whether the icon is decorative only (defaults to true if no aria-label is provided)
254
+ */
255
+ "aria-hidden"?: boolean;
256
+ /**
257
+ * Role of the icon (defaults to "img" when aria-label is provided)
258
+ */
259
+ role?: string;
260
+ /**
261
+ * Title for the icon (shows as tooltip)
262
+ */
263
+ title?: string;
264
+ }
265
+
266
+ /**
267
+ * Converts component names to readable aria-labels
268
+ * Examples:
269
+ * - ArrowLeft -> "Arrow left"
270
+ * - PaperPlane -> "Paper plane"
271
+ * - UserIcon -> "User"
272
+ * - XIcon -> "Close"
273
+ */
274
+ declare function getDefaultAriaLabel(componentName: string): string;
275
+ /**
276
+ * Utility function to extract and process accessibility props for icons
277
+ */
278
+ declare function getAccessibilityProps(props: IconProps, componentName?: string): {
279
+ accessibilityProps: {
280
+ 'aria-label': string | undefined;
281
+ 'aria-hidden': boolean;
282
+ 'aria-describedby': string | undefined;
283
+ role: string | undefined;
284
+ focusable: "false";
285
+ };
286
+ title: string | undefined;
287
+ restProps: {
288
+ size?: number;
289
+ color?: string;
290
+ suppressHydrationWarning?: boolean | undefined;
291
+ className?: string | undefined;
292
+ height?: number | string | undefined;
293
+ id?: string | undefined;
294
+ lang?: string | undefined;
295
+ max?: number | string | undefined;
296
+ media?: string | undefined;
297
+ method?: string | undefined;
298
+ min?: number | string | undefined;
299
+ name?: string | undefined;
300
+ style?: React.CSSProperties | undefined;
301
+ target?: string | undefined;
302
+ type?: string | undefined;
303
+ width?: number | string | undefined;
304
+ tabIndex?: number | undefined;
305
+ crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
306
+ accentHeight?: number | string | undefined;
307
+ accumulate?: "none" | "sum" | undefined;
308
+ additive?: "replace" | "sum" | undefined;
309
+ alignmentBaseline?: "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit" | undefined;
310
+ allowReorder?: "no" | "yes" | undefined;
311
+ alphabetic?: number | string | undefined;
312
+ amplitude?: number | string | undefined;
313
+ arabicForm?: "initial" | "medial" | "terminal" | "isolated" | undefined;
314
+ ascent?: number | string | undefined;
315
+ attributeName?: string | undefined;
316
+ attributeType?: string | undefined;
317
+ autoReverse?: (boolean | "true" | "false") | undefined;
318
+ azimuth?: number | string | undefined;
319
+ baseFrequency?: number | string | undefined;
320
+ baselineShift?: number | string | undefined;
321
+ baseProfile?: number | string | undefined;
322
+ bbox?: number | string | undefined;
323
+ begin?: number | string | undefined;
324
+ bias?: number | string | undefined;
325
+ by?: number | string | undefined;
326
+ calcMode?: number | string | undefined;
327
+ capHeight?: number | string | undefined;
328
+ clip?: number | string | undefined;
329
+ clipPath?: string | undefined;
330
+ clipPathUnits?: number | string | undefined;
331
+ clipRule?: number | string | undefined;
332
+ colorInterpolation?: number | string | undefined;
333
+ colorInterpolationFilters?: "auto" | "sRGB" | "linearRGB" | "inherit" | undefined;
334
+ colorProfile?: number | string | undefined;
335
+ colorRendering?: number | string | undefined;
336
+ contentScriptType?: number | string | undefined;
337
+ contentStyleType?: number | string | undefined;
338
+ cursor?: number | string | undefined;
339
+ cx?: number | string | undefined;
340
+ cy?: number | string | undefined;
341
+ d?: string | undefined;
342
+ decelerate?: number | string | undefined;
343
+ descent?: number | string | undefined;
344
+ diffuseConstant?: number | string | undefined;
345
+ direction?: number | string | undefined;
346
+ display?: number | string | undefined;
347
+ divisor?: number | string | undefined;
348
+ dominantBaseline?: number | string | undefined;
349
+ dur?: number | string | undefined;
350
+ dx?: number | string | undefined;
351
+ dy?: number | string | undefined;
352
+ edgeMode?: number | string | undefined;
353
+ elevation?: number | string | undefined;
354
+ enableBackground?: number | string | undefined;
355
+ end?: number | string | undefined;
356
+ exponent?: number | string | undefined;
357
+ externalResourcesRequired?: (boolean | "true" | "false") | undefined;
358
+ fill?: string | undefined;
359
+ fillOpacity?: number | string | undefined;
360
+ fillRule?: "nonzero" | "evenodd" | "inherit" | undefined;
361
+ filter?: string | undefined;
362
+ filterRes?: number | string | undefined;
363
+ filterUnits?: number | string | undefined;
364
+ floodColor?: number | string | undefined;
365
+ floodOpacity?: number | string | undefined;
366
+ focusable?: (boolean | "true" | "false") | "auto" | undefined;
367
+ fontFamily?: string | undefined;
368
+ fontSize?: number | string | undefined;
369
+ fontSizeAdjust?: number | string | undefined;
370
+ fontStretch?: number | string | undefined;
371
+ fontStyle?: number | string | undefined;
372
+ fontVariant?: number | string | undefined;
373
+ fontWeight?: number | string | undefined;
374
+ format?: number | string | undefined;
375
+ fr?: number | string | undefined;
376
+ from?: number | string | undefined;
377
+ fx?: number | string | undefined;
378
+ fy?: number | string | undefined;
379
+ g1?: number | string | undefined;
380
+ g2?: number | string | undefined;
381
+ glyphName?: number | string | undefined;
382
+ glyphOrientationHorizontal?: number | string | undefined;
383
+ glyphOrientationVertical?: number | string | undefined;
384
+ glyphRef?: number | string | undefined;
385
+ gradientTransform?: string | undefined;
386
+ gradientUnits?: string | undefined;
387
+ hanging?: number | string | undefined;
388
+ horizAdvX?: number | string | undefined;
389
+ horizOriginX?: number | string | undefined;
390
+ href?: string | undefined;
391
+ ideographic?: number | string | undefined;
392
+ imageRendering?: number | string | undefined;
393
+ in2?: number | string | undefined;
394
+ in?: string | undefined;
395
+ intercept?: number | string | undefined;
396
+ k1?: number | string | undefined;
397
+ k2?: number | string | undefined;
398
+ k3?: number | string | undefined;
399
+ k4?: number | string | undefined;
400
+ k?: number | string | undefined;
401
+ kernelMatrix?: number | string | undefined;
402
+ kernelUnitLength?: number | string | undefined;
403
+ kerning?: number | string | undefined;
404
+ keyPoints?: number | string | undefined;
405
+ keySplines?: number | string | undefined;
406
+ keyTimes?: number | string | undefined;
407
+ lengthAdjust?: number | string | undefined;
408
+ letterSpacing?: number | string | undefined;
409
+ lightingColor?: number | string | undefined;
410
+ limitingConeAngle?: number | string | undefined;
411
+ local?: number | string | undefined;
412
+ markerEnd?: string | undefined;
413
+ markerHeight?: number | string | undefined;
414
+ markerMid?: string | undefined;
415
+ markerStart?: string | undefined;
416
+ markerUnits?: number | string | undefined;
417
+ markerWidth?: number | string | undefined;
418
+ mask?: string | undefined;
419
+ maskContentUnits?: number | string | undefined;
420
+ maskUnits?: number | string | undefined;
421
+ mathematical?: number | string | undefined;
422
+ mode?: number | string | undefined;
423
+ numOctaves?: number | string | undefined;
424
+ offset?: number | string | undefined;
425
+ opacity?: number | string | undefined;
426
+ operator?: number | string | undefined;
427
+ order?: number | string | undefined;
428
+ orient?: number | string | undefined;
429
+ orientation?: number | string | undefined;
430
+ origin?: number | string | undefined;
431
+ overflow?: number | string | undefined;
432
+ overlinePosition?: number | string | undefined;
433
+ overlineThickness?: number | string | undefined;
434
+ paintOrder?: number | string | undefined;
435
+ panose1?: number | string | undefined;
436
+ path?: string | undefined;
437
+ pathLength?: number | string | undefined;
438
+ patternContentUnits?: string | undefined;
439
+ patternTransform?: number | string | undefined;
440
+ patternUnits?: string | undefined;
441
+ pointerEvents?: number | string | undefined;
442
+ points?: string | undefined;
443
+ pointsAtX?: number | string | undefined;
444
+ pointsAtY?: number | string | undefined;
445
+ pointsAtZ?: number | string | undefined;
446
+ preserveAlpha?: (boolean | "true" | "false") | undefined;
447
+ preserveAspectRatio?: string | undefined;
448
+ primitiveUnits?: number | string | undefined;
449
+ r?: number | string | undefined;
450
+ radius?: number | string | undefined;
451
+ refX?: number | string | undefined;
452
+ refY?: number | string | undefined;
453
+ renderingIntent?: number | string | undefined;
454
+ repeatCount?: number | string | undefined;
455
+ repeatDur?: number | string | undefined;
456
+ requiredExtensions?: number | string | undefined;
457
+ requiredFeatures?: number | string | undefined;
458
+ restart?: number | string | undefined;
459
+ result?: string | undefined;
460
+ rotate?: number | string | undefined;
461
+ rx?: number | string | undefined;
462
+ ry?: number | string | undefined;
463
+ scale?: number | string | undefined;
464
+ seed?: number | string | undefined;
465
+ shapeRendering?: number | string | undefined;
466
+ slope?: number | string | undefined;
467
+ spacing?: number | string | undefined;
468
+ specularConstant?: number | string | undefined;
469
+ specularExponent?: number | string | undefined;
470
+ speed?: number | string | undefined;
471
+ spreadMethod?: string | undefined;
472
+ startOffset?: number | string | undefined;
473
+ stdDeviation?: number | string | undefined;
474
+ stemh?: number | string | undefined;
475
+ stemv?: number | string | undefined;
476
+ stitchTiles?: number | string | undefined;
477
+ stopColor?: string | undefined;
478
+ stopOpacity?: number | string | undefined;
479
+ strikethroughPosition?: number | string | undefined;
480
+ strikethroughThickness?: number | string | undefined;
481
+ string?: number | string | undefined;
482
+ stroke?: string | undefined;
483
+ strokeDasharray?: string | number | undefined;
484
+ strokeDashoffset?: string | number | undefined;
485
+ strokeLinecap?: "butt" | "round" | "square" | "inherit" | undefined;
486
+ strokeLinejoin?: "miter" | "round" | "bevel" | "inherit" | undefined;
487
+ strokeMiterlimit?: number | string | undefined;
488
+ strokeOpacity?: number | string | undefined;
489
+ strokeWidth?: number | string | undefined;
490
+ surfaceScale?: number | string | undefined;
491
+ systemLanguage?: number | string | undefined;
492
+ tableValues?: number | string | undefined;
493
+ targetX?: number | string | undefined;
494
+ targetY?: number | string | undefined;
495
+ textAnchor?: string | undefined;
496
+ textDecoration?: number | string | undefined;
497
+ textLength?: number | string | undefined;
498
+ textRendering?: number | string | undefined;
499
+ to?: number | string | undefined;
500
+ transform?: string | undefined;
501
+ transformOrigin?: string | undefined;
502
+ u1?: number | string | undefined;
503
+ u2?: number | string | undefined;
504
+ underlinePosition?: number | string | undefined;
505
+ underlineThickness?: number | string | undefined;
506
+ unicode?: number | string | undefined;
507
+ unicodeBidi?: number | string | undefined;
508
+ unicodeRange?: number | string | undefined;
509
+ unitsPerEm?: number | string | undefined;
510
+ vAlphabetic?: number | string | undefined;
511
+ values?: string | undefined;
512
+ vectorEffect?: number | string | undefined;
513
+ version?: string | undefined;
514
+ vertAdvY?: number | string | undefined;
515
+ vertOriginX?: number | string | undefined;
516
+ vertOriginY?: number | string | undefined;
517
+ vHanging?: number | string | undefined;
518
+ vIdeographic?: number | string | undefined;
519
+ viewBox?: string | undefined;
520
+ viewTarget?: number | string | undefined;
521
+ visibility?: number | string | undefined;
522
+ vMathematical?: number | string | undefined;
523
+ widths?: number | string | undefined;
524
+ wordSpacing?: number | string | undefined;
525
+ writingMode?: number | string | undefined;
526
+ x1?: number | string | undefined;
527
+ x2?: number | string | undefined;
528
+ x?: number | string | undefined;
529
+ xChannelSelector?: string | undefined;
530
+ xHeight?: number | string | undefined;
531
+ xlinkActuate?: string | undefined;
532
+ xlinkArcrole?: string | undefined;
533
+ xlinkHref?: string | undefined;
534
+ xlinkRole?: string | undefined;
535
+ xlinkShow?: string | undefined;
536
+ xlinkTitle?: string | undefined;
537
+ xlinkType?: string | undefined;
538
+ xmlBase?: string | undefined;
539
+ xmlLang?: string | undefined;
540
+ xmlns?: string | undefined;
541
+ xmlnsXlink?: string | undefined;
542
+ xmlSpace?: string | undefined;
543
+ y1?: number | string | undefined;
544
+ y2?: number | string | undefined;
545
+ y?: number | string | undefined;
546
+ yChannelSelector?: string | undefined;
547
+ z?: number | string | undefined;
548
+ zoomAndPan?: string | undefined;
549
+ "aria-activedescendant"?: string | undefined;
550
+ "aria-atomic"?: (boolean | "true" | "false") | undefined;
551
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
552
+ "aria-braillelabel"?: string | undefined;
553
+ "aria-brailleroledescription"?: string | undefined;
554
+ "aria-busy"?: (boolean | "true" | "false") | undefined;
555
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
556
+ "aria-colcount"?: number | undefined;
557
+ "aria-colindex"?: number | undefined;
558
+ "aria-colindextext"?: string | undefined;
559
+ "aria-colspan"?: number | undefined;
560
+ "aria-controls"?: string | undefined;
561
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
562
+ "aria-description"?: string | undefined;
563
+ "aria-details"?: string | undefined;
564
+ "aria-disabled"?: (boolean | "true" | "false") | undefined;
565
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
566
+ "aria-errormessage"?: string | undefined;
567
+ "aria-expanded"?: (boolean | "true" | "false") | undefined;
568
+ "aria-flowto"?: string | undefined;
569
+ "aria-grabbed"?: (boolean | "true" | "false") | undefined;
570
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
571
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
572
+ "aria-keyshortcuts"?: string | undefined;
573
+ "aria-labelledby"?: string | undefined;
574
+ "aria-level"?: number | undefined;
575
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
576
+ "aria-modal"?: (boolean | "true" | "false") | undefined;
577
+ "aria-multiline"?: (boolean | "true" | "false") | undefined;
578
+ "aria-multiselectable"?: (boolean | "true" | "false") | undefined;
579
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
580
+ "aria-owns"?: string | undefined;
581
+ "aria-placeholder"?: string | undefined;
582
+ "aria-posinset"?: number | undefined;
583
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
584
+ "aria-readonly"?: (boolean | "true" | "false") | undefined;
585
+ "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
586
+ "aria-required"?: (boolean | "true" | "false") | undefined;
587
+ "aria-roledescription"?: string | undefined;
588
+ "aria-rowcount"?: number | undefined;
589
+ "aria-rowindex"?: number | undefined;
590
+ "aria-rowindextext"?: string | undefined;
591
+ "aria-rowspan"?: number | undefined;
592
+ "aria-selected"?: (boolean | "true" | "false") | undefined;
593
+ "aria-setsize"?: number | undefined;
594
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
595
+ "aria-valuemax"?: number | undefined;
596
+ "aria-valuemin"?: number | undefined;
597
+ "aria-valuenow"?: number | undefined;
598
+ "aria-valuetext"?: string | undefined;
599
+ children?: React.ReactNode | undefined;
600
+ dangerouslySetInnerHTML?: {
601
+ __html: string | TrustedHTML;
602
+ } | undefined;
603
+ onCopy?: React.ClipboardEventHandler<SVGSVGElement> | undefined;
604
+ onCopyCapture?: React.ClipboardEventHandler<SVGSVGElement> | undefined;
605
+ onCut?: React.ClipboardEventHandler<SVGSVGElement> | undefined;
606
+ onCutCapture?: React.ClipboardEventHandler<SVGSVGElement> | undefined;
607
+ onPaste?: React.ClipboardEventHandler<SVGSVGElement> | undefined;
608
+ onPasteCapture?: React.ClipboardEventHandler<SVGSVGElement> | undefined;
609
+ onCompositionEnd?: React.CompositionEventHandler<SVGSVGElement> | undefined;
610
+ onCompositionEndCapture?: React.CompositionEventHandler<SVGSVGElement> | undefined;
611
+ onCompositionStart?: React.CompositionEventHandler<SVGSVGElement> | undefined;
612
+ onCompositionStartCapture?: React.CompositionEventHandler<SVGSVGElement> | undefined;
613
+ onCompositionUpdate?: React.CompositionEventHandler<SVGSVGElement> | undefined;
614
+ onCompositionUpdateCapture?: React.CompositionEventHandler<SVGSVGElement> | undefined;
615
+ onFocus?: React.FocusEventHandler<SVGSVGElement> | undefined;
616
+ onFocusCapture?: React.FocusEventHandler<SVGSVGElement> | undefined;
617
+ onBlur?: React.FocusEventHandler<SVGSVGElement> | undefined;
618
+ onBlurCapture?: React.FocusEventHandler<SVGSVGElement> | undefined;
619
+ onChange?: React.FormEventHandler<SVGSVGElement> | undefined;
620
+ onChangeCapture?: React.FormEventHandler<SVGSVGElement> | undefined;
621
+ onBeforeInput?: React.InputEventHandler<SVGSVGElement> | undefined;
622
+ onBeforeInputCapture?: React.FormEventHandler<SVGSVGElement> | undefined;
623
+ onInput?: React.FormEventHandler<SVGSVGElement> | undefined;
624
+ onInputCapture?: React.FormEventHandler<SVGSVGElement> | undefined;
625
+ onReset?: React.FormEventHandler<SVGSVGElement> | undefined;
626
+ onResetCapture?: React.FormEventHandler<SVGSVGElement> | undefined;
627
+ onSubmit?: React.FormEventHandler<SVGSVGElement> | undefined;
628
+ onSubmitCapture?: React.FormEventHandler<SVGSVGElement> | undefined;
629
+ onInvalid?: React.FormEventHandler<SVGSVGElement> | undefined;
630
+ onInvalidCapture?: React.FormEventHandler<SVGSVGElement> | undefined;
631
+ onLoad?: React.ReactEventHandler<SVGSVGElement> | undefined;
632
+ onLoadCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
633
+ onError?: React.ReactEventHandler<SVGSVGElement> | undefined;
634
+ onErrorCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
635
+ onKeyDown?: React.KeyboardEventHandler<SVGSVGElement> | undefined;
636
+ onKeyDownCapture?: React.KeyboardEventHandler<SVGSVGElement> | undefined;
637
+ onKeyPress?: React.KeyboardEventHandler<SVGSVGElement> | undefined;
638
+ onKeyPressCapture?: React.KeyboardEventHandler<SVGSVGElement> | undefined;
639
+ onKeyUp?: React.KeyboardEventHandler<SVGSVGElement> | undefined;
640
+ onKeyUpCapture?: React.KeyboardEventHandler<SVGSVGElement> | undefined;
641
+ onAbort?: React.ReactEventHandler<SVGSVGElement> | undefined;
642
+ onAbortCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
643
+ onCanPlay?: React.ReactEventHandler<SVGSVGElement> | undefined;
644
+ onCanPlayCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
645
+ onCanPlayThrough?: React.ReactEventHandler<SVGSVGElement> | undefined;
646
+ onCanPlayThroughCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
647
+ onDurationChange?: React.ReactEventHandler<SVGSVGElement> | undefined;
648
+ onDurationChangeCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
649
+ onEmptied?: React.ReactEventHandler<SVGSVGElement> | undefined;
650
+ onEmptiedCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
651
+ onEncrypted?: React.ReactEventHandler<SVGSVGElement> | undefined;
652
+ onEncryptedCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
653
+ onEnded?: React.ReactEventHandler<SVGSVGElement> | undefined;
654
+ onEndedCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
655
+ onLoadedData?: React.ReactEventHandler<SVGSVGElement> | undefined;
656
+ onLoadedDataCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
657
+ onLoadedMetadata?: React.ReactEventHandler<SVGSVGElement> | undefined;
658
+ onLoadedMetadataCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
659
+ onLoadStart?: React.ReactEventHandler<SVGSVGElement> | undefined;
660
+ onLoadStartCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
661
+ onPause?: React.ReactEventHandler<SVGSVGElement> | undefined;
662
+ onPauseCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
663
+ onPlay?: React.ReactEventHandler<SVGSVGElement> | undefined;
664
+ onPlayCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
665
+ onPlaying?: React.ReactEventHandler<SVGSVGElement> | undefined;
666
+ onPlayingCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
667
+ onProgress?: React.ReactEventHandler<SVGSVGElement> | undefined;
668
+ onProgressCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
669
+ onRateChange?: React.ReactEventHandler<SVGSVGElement> | undefined;
670
+ onRateChangeCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
671
+ onSeeked?: React.ReactEventHandler<SVGSVGElement> | undefined;
672
+ onSeekedCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
673
+ onSeeking?: React.ReactEventHandler<SVGSVGElement> | undefined;
674
+ onSeekingCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
675
+ onStalled?: React.ReactEventHandler<SVGSVGElement> | undefined;
676
+ onStalledCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
677
+ onSuspend?: React.ReactEventHandler<SVGSVGElement> | undefined;
678
+ onSuspendCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
679
+ onTimeUpdate?: React.ReactEventHandler<SVGSVGElement> | undefined;
680
+ onTimeUpdateCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
681
+ onVolumeChange?: React.ReactEventHandler<SVGSVGElement> | undefined;
682
+ onVolumeChangeCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
683
+ onWaiting?: React.ReactEventHandler<SVGSVGElement> | undefined;
684
+ onWaitingCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
685
+ onAuxClick?: React.MouseEventHandler<SVGSVGElement> | undefined;
686
+ onAuxClickCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
687
+ onClick?: React.MouseEventHandler<SVGSVGElement> | undefined;
688
+ onClickCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
689
+ onContextMenu?: React.MouseEventHandler<SVGSVGElement> | undefined;
690
+ onContextMenuCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
691
+ onDoubleClick?: React.MouseEventHandler<SVGSVGElement> | undefined;
692
+ onDoubleClickCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
693
+ onDrag?: React.DragEventHandler<SVGSVGElement> | undefined;
694
+ onDragCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
695
+ onDragEnd?: React.DragEventHandler<SVGSVGElement> | undefined;
696
+ onDragEndCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
697
+ onDragEnter?: React.DragEventHandler<SVGSVGElement> | undefined;
698
+ onDragEnterCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
699
+ onDragExit?: React.DragEventHandler<SVGSVGElement> | undefined;
700
+ onDragExitCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
701
+ onDragLeave?: React.DragEventHandler<SVGSVGElement> | undefined;
702
+ onDragLeaveCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
703
+ onDragOver?: React.DragEventHandler<SVGSVGElement> | undefined;
704
+ onDragOverCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
705
+ onDragStart?: React.DragEventHandler<SVGSVGElement> | undefined;
706
+ onDragStartCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
707
+ onDrop?: React.DragEventHandler<SVGSVGElement> | undefined;
708
+ onDropCapture?: React.DragEventHandler<SVGSVGElement> | undefined;
709
+ onMouseDown?: React.MouseEventHandler<SVGSVGElement> | undefined;
710
+ onMouseDownCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
711
+ onMouseEnter?: React.MouseEventHandler<SVGSVGElement> | undefined;
712
+ onMouseLeave?: React.MouseEventHandler<SVGSVGElement> | undefined;
713
+ onMouseMove?: React.MouseEventHandler<SVGSVGElement> | undefined;
714
+ onMouseMoveCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
715
+ onMouseOut?: React.MouseEventHandler<SVGSVGElement> | undefined;
716
+ onMouseOutCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
717
+ onMouseOver?: React.MouseEventHandler<SVGSVGElement> | undefined;
718
+ onMouseOverCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
719
+ onMouseUp?: React.MouseEventHandler<SVGSVGElement> | undefined;
720
+ onMouseUpCapture?: React.MouseEventHandler<SVGSVGElement> | undefined;
721
+ onSelect?: React.ReactEventHandler<SVGSVGElement> | undefined;
722
+ onSelectCapture?: React.ReactEventHandler<SVGSVGElement> | undefined;
723
+ onTouchCancel?: React.TouchEventHandler<SVGSVGElement> | undefined;
724
+ onTouchCancelCapture?: React.TouchEventHandler<SVGSVGElement> | undefined;
725
+ onTouchEnd?: React.TouchEventHandler<SVGSVGElement> | undefined;
726
+ onTouchEndCapture?: React.TouchEventHandler<SVGSVGElement> | undefined;
727
+ onTouchMove?: React.TouchEventHandler<SVGSVGElement> | undefined;
728
+ onTouchMoveCapture?: React.TouchEventHandler<SVGSVGElement> | undefined;
729
+ onTouchStart?: React.TouchEventHandler<SVGSVGElement> | undefined;
730
+ onTouchStartCapture?: React.TouchEventHandler<SVGSVGElement> | undefined;
731
+ onPointerDown?: React.PointerEventHandler<SVGSVGElement> | undefined;
732
+ onPointerDownCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
733
+ onPointerMove?: React.PointerEventHandler<SVGSVGElement> | undefined;
734
+ onPointerMoveCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
735
+ onPointerUp?: React.PointerEventHandler<SVGSVGElement> | undefined;
736
+ onPointerUpCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
737
+ onPointerCancel?: React.PointerEventHandler<SVGSVGElement> | undefined;
738
+ onPointerCancelCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
739
+ onPointerEnter?: React.PointerEventHandler<SVGSVGElement> | undefined;
740
+ onPointerLeave?: React.PointerEventHandler<SVGSVGElement> | undefined;
741
+ onPointerOver?: React.PointerEventHandler<SVGSVGElement> | undefined;
742
+ onPointerOverCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
743
+ onPointerOut?: React.PointerEventHandler<SVGSVGElement> | undefined;
744
+ onPointerOutCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
745
+ onGotPointerCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
746
+ onGotPointerCaptureCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
747
+ onLostPointerCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
748
+ onLostPointerCaptureCapture?: React.PointerEventHandler<SVGSVGElement> | undefined;
749
+ onScroll?: React.UIEventHandler<SVGSVGElement> | undefined;
750
+ onScrollCapture?: React.UIEventHandler<SVGSVGElement> | undefined;
751
+ onWheel?: React.WheelEventHandler<SVGSVGElement> | undefined;
752
+ onWheelCapture?: React.WheelEventHandler<SVGSVGElement> | undefined;
753
+ onAnimationStart?: React.AnimationEventHandler<SVGSVGElement> | undefined;
754
+ onAnimationStartCapture?: React.AnimationEventHandler<SVGSVGElement> | undefined;
755
+ onAnimationEnd?: React.AnimationEventHandler<SVGSVGElement> | undefined;
756
+ onAnimationEndCapture?: React.AnimationEventHandler<SVGSVGElement> | undefined;
757
+ onAnimationIteration?: React.AnimationEventHandler<SVGSVGElement> | undefined;
758
+ onAnimationIterationCapture?: React.AnimationEventHandler<SVGSVGElement> | undefined;
759
+ onTransitionEnd?: React.TransitionEventHandler<SVGSVGElement> | undefined;
760
+ onTransitionEndCapture?: React.TransitionEventHandler<SVGSVGElement> | undefined;
761
+ ref?: React.LegacyRef<SVGSVGElement> | undefined;
762
+ key?: React.Key | null | undefined;
763
+ };
764
+ };
765
+
766
+ declare const ArrowLeft: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
767
+
768
+ declare const ArrowRight: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
769
+
770
+ declare const ArrowSquareOut: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
771
+
772
+ declare const ArrowUp: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
773
+
774
+ declare const Camera: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
775
+
776
+ declare const CaretDown: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
777
+
778
+ declare const CaretRight: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
779
+
780
+ declare const ChartBar: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
781
+
782
+ declare const Chat: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
783
+
784
+ declare const ChatsCircle: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
785
+
786
+ declare const Check: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
787
+
788
+ declare const Circle: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
789
+
790
+ declare const Clock: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
791
+
792
+ declare const CopySimpleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
793
+
794
+ declare const CreditCard: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
795
+
796
+ declare const CurrencyCircleDollar: React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>;
797
+
798
+ declare const DotsSixVerticalIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
799
+
800
+ declare const DotsThree: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
801
+
802
+ declare const DotsThreeVertical: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
803
+
804
+ declare const FacebookLogo: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
805
+
806
+ declare const Gear: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
807
+
808
+ declare const GearSix: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
809
+
810
+ declare const GitCommit: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
811
+
812
+ declare const Headset: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
813
+
814
+ declare const ImageIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
815
+
816
+ declare const InstagramLogo: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
817
+
818
+ declare const KeyIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
819
+
820
+ declare const LinkIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
821
+
822
+ declare const LinkSimple: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
823
+
824
+ declare const LockSimple: React__default.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React__default.RefAttributes<SVGSVGElement>>;
825
+
826
+ declare const Logo: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
827
+
828
+ declare const MagnifyingGlass: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
829
+
830
+ declare const MapPin: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
831
+
832
+ declare const Microphone: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
833
+
834
+ declare const Minus: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
835
+
836
+ declare const MinusCircleIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
837
+
838
+ declare const Paperclip: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
839
+
840
+ declare const PaperPlane: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
841
+
842
+ declare const PaperPlaneTilt: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
843
+
844
+ declare const PencilSimple: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
845
+
846
+ declare const PlugsRegular: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
847
+
848
+ declare const Plus: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
849
+
850
+ declare const RecordIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
851
+
852
+ declare const SidebarSimple: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
853
+
854
+ declare const SignOut: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
855
+
856
+ declare const Storefront: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
857
+
858
+ declare const Tag: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
859
+
860
+ declare const Ticket: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
861
+
862
+ declare const Trash: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
863
+
864
+ declare const UserCircle: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
865
+
866
+ declare const UserIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
867
+
868
+ declare const Users: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
869
+
870
+ declare const VideoCamera: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
871
+
872
+ declare const WhatsAppLogo: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
873
+
874
+ declare const WarningOctagon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
875
+
876
+ declare const WarningTriangle: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
877
+
878
+ declare const Waveform: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
879
+
880
+ declare const XIcon: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
881
+
882
+ declare const AEP: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
883
+
884
+ declare const aep_AEP: typeof AEP;
885
+ declare namespace aep {
886
+ export { aep_AEP as AEP };
887
+ }
888
+
889
+ declare const AI: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
890
+
891
+ declare const ai_AI: typeof AI;
892
+ declare namespace ai {
893
+ export { ai_AI as AI };
894
+ }
895
+
896
+ declare const AVI: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
897
+
898
+ declare const avi_AVI: typeof AVI;
899
+ declare namespace avi {
900
+ export { avi_AVI as AVI };
901
+ }
902
+
903
+ declare const Blend: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
904
+
905
+ declare const blend_Blend: typeof Blend;
906
+ declare namespace blend {
907
+ export { blend_Blend as Blend };
908
+ }
909
+
910
+ declare const C4D: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
911
+
912
+ declare const c4d_C4D: typeof C4D;
913
+ declare namespace c4d {
914
+ export { c4d_C4D as C4D };
915
+ }
916
+
917
+ declare const CDR: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
918
+
919
+ declare const cdr_CDR: typeof CDR;
920
+ declare namespace cdr {
921
+ export { cdr_CDR as CDR };
922
+ }
923
+
924
+ declare const CSS: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
925
+
926
+ declare const css_CSS: typeof CSS;
927
+ declare namespace css {
928
+ export { css_CSS as CSS };
929
+ }
930
+
931
+ declare const CSV: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
932
+
933
+ declare const csv_CSV: typeof CSV;
934
+ declare namespace csv {
935
+ export { csv_CSV as CSV };
936
+ }
937
+
938
+ declare const DMG: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
939
+
940
+ declare const dmg_DMG: typeof DMG;
941
+ declare namespace dmg {
942
+ export { dmg_DMG as DMG };
943
+ }
944
+
945
+ declare const DOC: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
946
+
947
+ declare const doc_DOC: typeof DOC;
948
+ declare namespace doc {
949
+ export { doc_DOC as DOC };
950
+ }
951
+
952
+ declare const EXE: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
953
+
954
+ declare const exe_EXE: typeof EXE;
955
+ declare namespace exe {
956
+ export { exe_EXE as EXE };
957
+ }
958
+
959
+ declare const Fig: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
960
+
961
+ declare const fig_Fig: typeof Fig;
962
+ declare namespace fig {
963
+ export { fig_Fig as Fig };
964
+ }
965
+
966
+ declare const GIF: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
967
+
968
+ declare const gif_GIF: typeof GIF;
969
+ declare namespace gif {
970
+ export { gif_GIF as GIF };
971
+ }
972
+
973
+ declare const HTML: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
974
+
975
+ declare const html_HTML: typeof HTML;
976
+ declare namespace html {
977
+ export { html_HTML as HTML };
978
+ }
979
+
980
+ declare const ICO: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
981
+
982
+ declare const ico_ICO: typeof ICO;
983
+ declare namespace ico {
984
+ export { ico_ICO as ICO };
985
+ }
986
+
987
+ declare const Java: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
988
+
989
+ declare const java_Java: typeof Java;
990
+ declare namespace java {
991
+ export { java_Java as Java };
992
+ }
993
+
994
+ declare const JPEG: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
995
+
996
+ declare const jpeg_JPEG: typeof JPEG;
997
+ declare namespace jpeg {
998
+ export { jpeg_JPEG as JPEG };
999
+ }
1000
+
1001
+ declare const JPG: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1002
+
1003
+ declare const jpg_JPG: typeof JPG;
1004
+ declare namespace jpg {
1005
+ export { jpg_JPG as JPG };
1006
+ }
1007
+
1008
+ declare const JS: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1009
+
1010
+ declare const js_JS: typeof JS;
1011
+ declare namespace js {
1012
+ export { js_JS as JS };
1013
+ }
1014
+
1015
+ declare const JSON: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1016
+
1017
+ declare const json_JSON: typeof JSON;
1018
+ declare namespace json {
1019
+ export { json_JSON as JSON };
1020
+ }
1021
+
1022
+ declare const MOV: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1023
+
1024
+ declare const mov_MOV: typeof MOV;
1025
+ declare namespace mov {
1026
+ export { mov_MOV as MOV };
1027
+ }
1028
+
1029
+ declare const MP3: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1030
+
1031
+ declare const mp3_MP3: typeof MP3;
1032
+ declare namespace mp3 {
1033
+ export { mp3_MP3 as MP3 };
1034
+ }
1035
+
1036
+ declare const MP4: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1037
+
1038
+ declare const mp4_MP4: typeof MP4;
1039
+ declare namespace mp4 {
1040
+ export { mp4_MP4 as MP4 };
1041
+ }
1042
+
1043
+ declare const MPG: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1044
+
1045
+ declare const mpg_MPG: typeof MPG;
1046
+ declare namespace mpg {
1047
+ export { mpg_MPG as MPG };
1048
+ }
1049
+
1050
+ declare const PDF: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1051
+
1052
+ declare const pdf_PDF: typeof PDF;
1053
+ declare namespace pdf {
1054
+ export { pdf_PDF as PDF };
1055
+ }
1056
+
1057
+ declare const PNG: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1058
+
1059
+ declare const png_PNG: typeof PNG;
1060
+ declare namespace png {
1061
+ export { png_PNG as PNG };
1062
+ }
1063
+
1064
+ declare const PPT: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1065
+
1066
+ declare const ppt_PPT: typeof PPT;
1067
+ declare namespace ppt {
1068
+ export { ppt_PPT as PPT };
1069
+ }
1070
+
1071
+ declare const PSD: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1072
+
1073
+ declare const psd_PSD: typeof PSD;
1074
+ declare namespace psd {
1075
+ export { psd_PSD as PSD };
1076
+ }
1077
+
1078
+ declare const Rar: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1079
+
1080
+ declare const rar_Rar: typeof Rar;
1081
+ declare namespace rar {
1082
+ export { rar_Rar as Rar };
1083
+ }
1084
+
1085
+ declare const Sketch: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1086
+
1087
+ declare const sketch_Sketch: typeof Sketch;
1088
+ declare namespace sketch {
1089
+ export { sketch_Sketch as Sketch };
1090
+ }
1091
+
1092
+ declare const SVG: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1093
+
1094
+ declare const svg_SVG: typeof SVG;
1095
+ declare namespace svg {
1096
+ export { svg_SVG as SVG };
1097
+ }
1098
+
1099
+ declare const TIFF: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1100
+
1101
+ declare const tiff_TIFF: typeof TIFF;
1102
+ declare namespace tiff {
1103
+ export { tiff_TIFF as TIFF };
1104
+ }
1105
+
1106
+ declare const TXT: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1107
+
1108
+ declare const txt_TXT: typeof TXT;
1109
+ declare namespace txt {
1110
+ export { txt_TXT as TXT };
1111
+ }
1112
+
1113
+ declare const WAV: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1114
+
1115
+ declare const wav_WAV: typeof WAV;
1116
+ declare namespace wav {
1117
+ export { wav_WAV as WAV };
1118
+ }
1119
+
1120
+ declare const WEBP: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1121
+
1122
+ declare const webp_WEBP: typeof WEBP;
1123
+ declare namespace webp {
1124
+ export { webp_WEBP as WEBP };
1125
+ }
1126
+
1127
+ declare const XLS: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1128
+
1129
+ declare const xls_XLS: typeof XLS;
1130
+ declare namespace xls {
1131
+ export { xls_XLS as XLS };
1132
+ }
1133
+
1134
+ declare const Zip: React.ForwardRefExoticComponent<Omit<IconProps, "ref"> & React.RefAttributes<SVGSVGElement>>;
1135
+
1136
+ declare const zip_Zip: typeof Zip;
1137
+ declare namespace zip {
1138
+ export { zip_Zip as Zip };
1139
+ }
1140
+
1141
+ declare const DropdownMenu: React.FC<DropdownMenuPrimitive.DropdownMenuProps>;
1142
+ declare const DropdownMenuTrigger: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React.RefAttributes<HTMLButtonElement>>;
1143
+ declare const DropdownMenuGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React.RefAttributes<HTMLDivElement>>;
1144
+ declare const DropdownMenuPortal: React.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
1145
+ declare const DropdownMenuSub: React.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
1146
+ declare const DropdownMenuRadioGroup: React.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React.RefAttributes<HTMLDivElement>>;
1147
+ declare const DropdownMenuSubTrigger: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
1148
+ inset?: boolean;
1149
+ } & React.RefAttributes<HTMLDivElement>>;
1150
+ declare const DropdownMenuSubContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1151
+ declare const DropdownMenuContent: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1152
+ declare const DropdownMenuItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
1153
+ inset?: boolean;
1154
+ } & React.RefAttributes<HTMLDivElement>>;
1155
+ declare const DropdownMenuCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1156
+ declare const DropdownMenuRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1157
+ declare const DropdownMenuLabel: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
1158
+ inset?: boolean;
1159
+ } & React.RefAttributes<HTMLDivElement>>;
1160
+ declare const DropdownMenuSeparator: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1161
+ declare const DropdownMenuShortcut: {
1162
+ ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
1163
+ displayName: string;
1164
+ };
1165
+
1166
+ declare const TableWrapper: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1167
+ declare const Table: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref"> & React.RefAttributes<HTMLTableElement>>;
1168
+ declare const TableHeader: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React.RefAttributes<HTMLTableSectionElement>>;
1169
+ declare const TableBody: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React.RefAttributes<HTMLTableSectionElement>>;
1170
+ declare const TableFooter: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React.RefAttributes<HTMLTableSectionElement>>;
1171
+ declare const TableRow: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "ref"> & React.RefAttributes<HTMLTableRowElement>>;
1172
+ declare const TableHead: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>, "ref"> & React.RefAttributes<HTMLTableCellElement>>;
1173
+ declare const TableCell: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLTableDataCellElement> & React.TdHTMLAttributes<HTMLTableDataCellElement> & {
1174
+ /** Label to show on mobile (uses data-label attribute) */
1175
+ label?: string;
1176
+ }, "ref"> & React.RefAttributes<HTMLTableCellElement>>;
1177
+ declare const TableCaption: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React.RefAttributes<HTMLTableCaptionElement>>;
1178
+
1179
+ declare const Select: React.FC<SelectPrimitive.SelectProps>;
1180
+ declare const SelectGroup: React.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React.RefAttributes<HTMLDivElement>>;
1181
+ declare const SelectValue: React.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React.RefAttributes<HTMLSpanElement>>;
1182
+ declare const SelectTrigger: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
1183
+ declare const SelectScrollUpButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollUpButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1184
+ declare const SelectScrollDownButton: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectScrollDownButtonProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1185
+ declare const SelectContent: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1186
+ declare const SelectLabel: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectLabelProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1187
+ declare const SelectItem: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1188
+ declare const SelectSeparator: React.ForwardRefExoticComponent<Omit<SelectPrimitive.SelectSeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1189
+
1190
+ declare const Label: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & React.RefAttributes<HTMLLabelElement>>;
1191
+
1192
+ declare const Switch: React.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
1193
+
1194
+ declare const RadioGroup: React.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
1195
+ declare const RadioGroupItem: React.ForwardRefExoticComponent<Omit<RadioGroupPrimitive.RadioGroupItemProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
1196
+
1197
+ interface MultiSelectOption {
1198
+ value: string;
1199
+ label: string;
1200
+ disabled?: boolean;
1201
+ }
1202
+ interface MultiSelectProps {
1203
+ options: MultiSelectOption[];
1204
+ value?: string[];
1205
+ onValueChange?: (value: string[]) => void;
1206
+ placeholder?: string;
1207
+ disabled?: boolean;
1208
+ className?: string;
1209
+ showSelectAll?: boolean;
1210
+ selectAllLabel?: string;
1211
+ maxDisplayItems?: number;
1212
+ id?: string;
1213
+ }
1214
+ declare const MultiSelect: React.ForwardRefExoticComponent<MultiSelectProps & React.RefAttributes<HTMLButtonElement>>;
1215
+
1216
+ declare const Checkbox: React.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
1217
+
1218
+ /** @type {import('tailwindcss').Config} */
1219
+ declare const luaniversePreset: any;
1220
+
1221
+ /**
1222
+ * Luaniverse Design System - Tailwind CSS Safelist
1223
+ *
1224
+ * This file contains all the classes that should be safelisted in consumer applications
1225
+ * to ensure they are included in the final CSS build even if not detected by content scanning.
1226
+ */
1227
+ declare const luaniverseSafelist: string[];
1228
+
1229
+ export { AEP, AI, AVI, aep as AepIcon, ai as AiIcon, ArrowLeft, ArrowRight, ArrowSquareOut, ArrowUp, avi as AviIcon, Badge, type BadgeProps, Blend, blend as BlendIcon, Button, type ButtonProps, C4D, c4d as C4dIcon, CDR, CSS, CSV, Camera, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDown, CaretRight, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, cdr as CdrIcon, ChartBar, Chat, ChatsCircle, Check, Checkbox, Circle, Clock, CopySimpleIcon, CreditCard, css as CssIcon, csv as CsvIcon, CurrencyCircleDollar, DMG, DOC, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, dmg as DmgIcon, doc as DocIcon, DotsSixVerticalIcon, DotsThree, DotsThreeVertical, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EXE, exe as ExeIcon, FacebookLogo, Fig, fig as FigIcon, GIF, Gear, GearSix, gif as GifIcon, GitCommit, HTML, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, html as HtmlIcon, ICO, ico as IcoIcon, IconButton, type IconButtonProps, type IconProps, ImageIcon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, InstagramLogo, JPEG, JPG, JS, JSON, Java, java as JavaIcon, jpeg as JpegIcon, jpg as JpgIcon, js as JsIcon, json as JsonIcon, KeyIcon, Label, Link, LinkIcon, type LinkProps, LinkSimple, LockSimple, Logo, LogoSpinner, MOV, MP3, MP4, MPG, MagnifyingGlass, MapPin, Microphone, Minus, MinusCircleIcon, mov as MovIcon, mp3 as Mp3Icon, mp4 as Mp4Icon, mpg as MpgIcon, MultiSelect, type MultiSelectOption, type MultiSelectProps, Overline, PDF, PNG, PPT, PSD, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaperPlane, PaperPlaneTilt, Paperclip, pdf as PdfIcon, PencilSimple, PlugsRegular, Plus, png as PngIcon, ppt as PptIcon, psd as PsdIcon, RadioGroup, RadioGroupItem, Rar, rar as RarIcon, RecordIcon, SVG, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, SidebarSimple, SignOut, Sketch, sketch as SketchIcon, Storefront, svg as SvgIcon, Switch, TIFF, TXT, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Text, Textarea, type TextareaProps, Ticket, tiff as TiffIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Trash, txt as TxtIcon, Typography, type TypographyProps, UserCircle, UserIcon, Users, VideoCamera, WAV, WEBP, WarningOctagon, WarningTriangle, wav as WavIcon, Waveform, webp as WebpIcon, WhatsAppLogo, XIcon, XLS, xls as XlsIcon, Zip, zip as ZipIcon, badgeVariants, buttonVariants, cn, luaniversePreset as default, getAccessibilityProps, getDefaultAriaLabel, iconButtonVariants, luaniversePreset, luaniverseSafelist };