@reeverdev/ui 0.1.31 → 0.1.33

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.
package/dist/index.d.cts CHANGED
@@ -295,7 +295,10 @@ interface AccordionItemProps extends Omit<React$1.ComponentPropsWithoutRef<typeo
295
295
  }
296
296
  declare const AccordionItem: React$1.ForwardRefExoticComponent<AccordionItemProps & React$1.RefAttributes<HTMLDivElement>>;
297
297
 
298
- declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
298
+ interface CollapsibleProps extends Omit<React$1.ComponentPropsWithoutRef<typeof CollapsiblePrimitive.Root>, 'title'> {
299
+ title?: React$1.ReactNode;
300
+ }
301
+ declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
299
302
  declare const CollapsibleTrigger: React$1.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
300
303
  declare const CollapsibleContent: React$1.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
301
304
 
@@ -982,7 +985,7 @@ interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantP
982
985
  declare const StatCard: React$1.ForwardRefExoticComponent<StatCardProps & React$1.RefAttributes<HTMLDivElement>>;
983
986
 
984
987
  declare const listVariants: (props?: ({
985
- variant?: "bordered" | "default" | "striped" | null | undefined;
988
+ variant?: "default" | "bordered" | "striped" | null | undefined;
986
989
  size?: "sm" | "md" | "lg" | null | undefined;
987
990
  } & class_variance_authority_types.ClassProp) | undefined) => string;
988
991
  interface ListProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof listVariants> {
@@ -1761,11 +1764,11 @@ interface ListboxItemProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
1761
1764
  declare const ListboxItem: React$1.ForwardRefExoticComponent<ListboxItemProps & React$1.RefAttributes<HTMLDivElement>>;
1762
1765
 
1763
1766
  declare const sortableListVariants: (props?: ({
1764
- variant?: "bordered" | "default" | "cards" | null | undefined;
1767
+ variant?: "default" | "bordered" | "cards" | null | undefined;
1765
1768
  size?: "sm" | "md" | "lg" | null | undefined;
1766
1769
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1767
1770
  declare const sortableItemVariants: (props?: ({
1768
- variant?: "bordered" | "default" | "cards" | null | undefined;
1771
+ variant?: "default" | "bordered" | "cards" | null | undefined;
1769
1772
  size?: "sm" | "md" | "lg" | null | undefined;
1770
1773
  isDragging?: boolean | null | undefined;
1771
1774
  isDragOver?: boolean | null | undefined;
@@ -1942,7 +1945,7 @@ interface TimePickerProps {
1942
1945
  declare const TimePicker: React$1.ForwardRefExoticComponent<TimePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
1943
1946
 
1944
1947
  declare const virtualListVariants: (props?: ({
1945
- variant?: "bordered" | "default" | "cards" | null | undefined;
1948
+ variant?: "default" | "bordered" | "cards" | null | undefined;
1946
1949
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1947
1950
  interface VirtualListProps<T> extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "children">, VariantProps<typeof virtualListVariants> {
1948
1951
  /** Array of items to render */
@@ -1967,7 +1970,7 @@ declare const VirtualList: <T>(props: VirtualListProps<T> & {
1967
1970
  }) => React$1.ReactElement;
1968
1971
 
1969
1972
  declare const infiniteScrollVariants: (props?: ({
1970
- variant?: "bordered" | "default" | null | undefined;
1973
+ variant?: "default" | "bordered" | null | undefined;
1971
1974
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1972
1975
  declare const infiniteScrollLoaderVariants: (props?: ({
1973
1976
  size?: "sm" | "md" | "lg" | null | undefined;
@@ -2202,7 +2205,7 @@ interface CopyButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonEl
2202
2205
  declare const CopyButton: React$1.ForwardRefExoticComponent<CopyButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2203
2206
 
2204
2207
  declare const fullCalendarVariants: (props?: ({
2205
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2208
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2206
2209
  size?: "sm" | "md" | "lg" | null | undefined;
2207
2210
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2208
2211
  type CalendarView = "month" | "week" | "day";
@@ -2330,13 +2333,13 @@ interface AreaChartProps extends React$1.HTMLAttributes<HTMLDivElement>, Variant
2330
2333
  declare const AreaChart: React$1.ForwardRefExoticComponent<AreaChartProps & React$1.RefAttributes<HTMLDivElement>>;
2331
2334
 
2332
2335
  declare const kanbanBoardVariants: (props?: ({
2333
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2336
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2334
2337
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2335
2338
  declare const kanbanColumnVariants: (props?: ({
2336
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2339
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2337
2340
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2338
2341
  declare const kanbanCardVariants: (props?: ({
2339
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2342
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2340
2343
  isDragging?: boolean | null | undefined;
2341
2344
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2342
2345
  interface KanbanCard {
@@ -2370,7 +2373,7 @@ interface KanbanBoardProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
2370
2373
  declare const KanbanBoard: React$1.ForwardRefExoticComponent<KanbanBoardProps & React$1.RefAttributes<HTMLDivElement>>;
2371
2374
 
2372
2375
  declare const carouselVariants: (props?: ({
2373
- variant?: "bordered" | "default" | "cards" | null | undefined;
2376
+ variant?: "default" | "bordered" | "cards" | null | undefined;
2374
2377
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2375
2378
  type CarouselApi = UseEmblaCarouselType[1];
2376
2379
  type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
@@ -2474,7 +2477,7 @@ interface EmojiPickerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
2474
2477
  declare const EmojiPicker: React$1.ForwardRefExoticComponent<EmojiPickerProps & React$1.RefAttributes<HTMLDivElement>>;
2475
2478
 
2476
2479
  declare const richTextEditorVariants: (props?: ({
2477
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2480
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2478
2481
  size?: "sm" | "md" | "lg" | null | undefined;
2479
2482
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2480
2483
  interface RichTextEditorProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange">, VariantProps<typeof richTextEditorVariants> {
@@ -2498,7 +2501,7 @@ interface RichTextEditorProps extends Omit<React$1.HTMLAttributes<HTMLDivElement
2498
2501
  declare const RichTextEditor: React$1.ForwardRefExoticComponent<RichTextEditorProps & React$1.RefAttributes<HTMLDivElement>>;
2499
2502
 
2500
2503
  declare const imageCropperVariants: (props?: ({
2501
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2504
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2502
2505
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2503
2506
  interface ImageCropperProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange">, VariantProps<typeof imageCropperVariants> {
2504
2507
  /** Image source URL */
@@ -2525,7 +2528,7 @@ interface ImageCropperProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
2525
2528
  declare const ImageCropper: React$1.ForwardRefExoticComponent<ImageCropperProps & React$1.RefAttributes<HTMLDivElement>>;
2526
2529
 
2527
2530
  declare const qrCodeVariants: (props?: ({
2528
- variant?: "bordered" | "default" | "card" | null | undefined;
2531
+ variant?: "default" | "bordered" | "card" | null | undefined;
2529
2532
  size?: "sm" | "md" | "lg" | null | undefined;
2530
2533
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2531
2534
  interface QRCodeProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title">, VariantProps<typeof qrCodeVariants> {
@@ -2575,7 +2578,7 @@ interface ThemeProviderProps {
2575
2578
  declare const ThemeProvider: React$1.FC<ThemeProviderProps>;
2576
2579
 
2577
2580
  declare const themeToggleVariants: (props?: ({
2578
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2581
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2579
2582
  size?: "sm" | "md" | "lg" | null | undefined;
2580
2583
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2581
2584
  interface ThemeToggleProps extends VariantProps<typeof themeToggleVariants> {
@@ -2893,11 +2896,11 @@ interface ActionMenuProps extends VariantProps<typeof actionMenuTriggerVariants>
2893
2896
  declare const ActionMenu: React$1.ForwardRefExoticComponent<ActionMenuProps & React$1.RefAttributes<HTMLButtonElement>>;
2894
2897
 
2895
2898
  declare const listViewVariants: (props?: ({
2896
- variant?: "bordered" | "default" | "cards" | null | undefined;
2899
+ variant?: "default" | "bordered" | "cards" | null | undefined;
2897
2900
  size?: "sm" | "md" | "lg" | null | undefined;
2898
2901
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2899
2902
  declare const listViewItemVariants: (props?: ({
2900
- variant?: "bordered" | "default" | "cards" | null | undefined;
2903
+ variant?: "default" | "bordered" | "cards" | null | undefined;
2901
2904
  size?: "sm" | "md" | "lg" | null | undefined;
2902
2905
  isSelected?: boolean | null | undefined;
2903
2906
  isDisabled?: boolean | null | undefined;
@@ -3716,7 +3719,7 @@ declare const AppShellFooter: React$1.ForwardRefExoticComponent<AppShellFooterPr
3716
3719
  declare const AppShellMain: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
3717
3720
 
3718
3721
  declare const dashboardLayoutVariants: (props?: ({
3719
- variant?: "bordered" | "default" | "filled" | null | undefined;
3722
+ variant?: "default" | "bordered" | "filled" | null | undefined;
3720
3723
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3721
3724
  interface DashboardLayoutProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof dashboardLayoutVariants> {
3722
3725
  /** Navigation items for sidebar */
package/dist/index.d.ts CHANGED
@@ -295,7 +295,10 @@ interface AccordionItemProps extends Omit<React$1.ComponentPropsWithoutRef<typeo
295
295
  }
296
296
  declare const AccordionItem: React$1.ForwardRefExoticComponent<AccordionItemProps & React$1.RefAttributes<HTMLDivElement>>;
297
297
 
298
- declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
298
+ interface CollapsibleProps extends Omit<React$1.ComponentPropsWithoutRef<typeof CollapsiblePrimitive.Root>, 'title'> {
299
+ title?: React$1.ReactNode;
300
+ }
301
+ declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
299
302
  declare const CollapsibleTrigger: React$1.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
300
303
  declare const CollapsibleContent: React$1.ForwardRefExoticComponent<Omit<CollapsiblePrimitive.CollapsibleContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
301
304
 
@@ -982,7 +985,7 @@ interface StatCardProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantP
982
985
  declare const StatCard: React$1.ForwardRefExoticComponent<StatCardProps & React$1.RefAttributes<HTMLDivElement>>;
983
986
 
984
987
  declare const listVariants: (props?: ({
985
- variant?: "bordered" | "default" | "striped" | null | undefined;
988
+ variant?: "default" | "bordered" | "striped" | null | undefined;
986
989
  size?: "sm" | "md" | "lg" | null | undefined;
987
990
  } & class_variance_authority_types.ClassProp) | undefined) => string;
988
991
  interface ListProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof listVariants> {
@@ -1761,11 +1764,11 @@ interface ListboxItemProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
1761
1764
  declare const ListboxItem: React$1.ForwardRefExoticComponent<ListboxItemProps & React$1.RefAttributes<HTMLDivElement>>;
1762
1765
 
1763
1766
  declare const sortableListVariants: (props?: ({
1764
- variant?: "bordered" | "default" | "cards" | null | undefined;
1767
+ variant?: "default" | "bordered" | "cards" | null | undefined;
1765
1768
  size?: "sm" | "md" | "lg" | null | undefined;
1766
1769
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1767
1770
  declare const sortableItemVariants: (props?: ({
1768
- variant?: "bordered" | "default" | "cards" | null | undefined;
1771
+ variant?: "default" | "bordered" | "cards" | null | undefined;
1769
1772
  size?: "sm" | "md" | "lg" | null | undefined;
1770
1773
  isDragging?: boolean | null | undefined;
1771
1774
  isDragOver?: boolean | null | undefined;
@@ -1942,7 +1945,7 @@ interface TimePickerProps {
1942
1945
  declare const TimePicker: React$1.ForwardRefExoticComponent<TimePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
1943
1946
 
1944
1947
  declare const virtualListVariants: (props?: ({
1945
- variant?: "bordered" | "default" | "cards" | null | undefined;
1948
+ variant?: "default" | "bordered" | "cards" | null | undefined;
1946
1949
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1947
1950
  interface VirtualListProps<T> extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "children">, VariantProps<typeof virtualListVariants> {
1948
1951
  /** Array of items to render */
@@ -1967,7 +1970,7 @@ declare const VirtualList: <T>(props: VirtualListProps<T> & {
1967
1970
  }) => React$1.ReactElement;
1968
1971
 
1969
1972
  declare const infiniteScrollVariants: (props?: ({
1970
- variant?: "bordered" | "default" | null | undefined;
1973
+ variant?: "default" | "bordered" | null | undefined;
1971
1974
  } & class_variance_authority_types.ClassProp) | undefined) => string;
1972
1975
  declare const infiniteScrollLoaderVariants: (props?: ({
1973
1976
  size?: "sm" | "md" | "lg" | null | undefined;
@@ -2202,7 +2205,7 @@ interface CopyButtonProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonEl
2202
2205
  declare const CopyButton: React$1.ForwardRefExoticComponent<CopyButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
2203
2206
 
2204
2207
  declare const fullCalendarVariants: (props?: ({
2205
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2208
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2206
2209
  size?: "sm" | "md" | "lg" | null | undefined;
2207
2210
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2208
2211
  type CalendarView = "month" | "week" | "day";
@@ -2330,13 +2333,13 @@ interface AreaChartProps extends React$1.HTMLAttributes<HTMLDivElement>, Variant
2330
2333
  declare const AreaChart: React$1.ForwardRefExoticComponent<AreaChartProps & React$1.RefAttributes<HTMLDivElement>>;
2331
2334
 
2332
2335
  declare const kanbanBoardVariants: (props?: ({
2333
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2336
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2334
2337
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2335
2338
  declare const kanbanColumnVariants: (props?: ({
2336
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2339
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2337
2340
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2338
2341
  declare const kanbanCardVariants: (props?: ({
2339
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2342
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2340
2343
  isDragging?: boolean | null | undefined;
2341
2344
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2342
2345
  interface KanbanCard {
@@ -2370,7 +2373,7 @@ interface KanbanBoardProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
2370
2373
  declare const KanbanBoard: React$1.ForwardRefExoticComponent<KanbanBoardProps & React$1.RefAttributes<HTMLDivElement>>;
2371
2374
 
2372
2375
  declare const carouselVariants: (props?: ({
2373
- variant?: "bordered" | "default" | "cards" | null | undefined;
2376
+ variant?: "default" | "bordered" | "cards" | null | undefined;
2374
2377
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2375
2378
  type CarouselApi = UseEmblaCarouselType[1];
2376
2379
  type UseCarouselParameters = Parameters<typeof useEmblaCarousel>;
@@ -2474,7 +2477,7 @@ interface EmojiPickerProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
2474
2477
  declare const EmojiPicker: React$1.ForwardRefExoticComponent<EmojiPickerProps & React$1.RefAttributes<HTMLDivElement>>;
2475
2478
 
2476
2479
  declare const richTextEditorVariants: (props?: ({
2477
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2480
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2478
2481
  size?: "sm" | "md" | "lg" | null | undefined;
2479
2482
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2480
2483
  interface RichTextEditorProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange">, VariantProps<typeof richTextEditorVariants> {
@@ -2498,7 +2501,7 @@ interface RichTextEditorProps extends Omit<React$1.HTMLAttributes<HTMLDivElement
2498
2501
  declare const RichTextEditor: React$1.ForwardRefExoticComponent<RichTextEditorProps & React$1.RefAttributes<HTMLDivElement>>;
2499
2502
 
2500
2503
  declare const imageCropperVariants: (props?: ({
2501
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2504
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2502
2505
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2503
2506
  interface ImageCropperProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange">, VariantProps<typeof imageCropperVariants> {
2504
2507
  /** Image source URL */
@@ -2525,7 +2528,7 @@ interface ImageCropperProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
2525
2528
  declare const ImageCropper: React$1.ForwardRefExoticComponent<ImageCropperProps & React$1.RefAttributes<HTMLDivElement>>;
2526
2529
 
2527
2530
  declare const qrCodeVariants: (props?: ({
2528
- variant?: "bordered" | "default" | "card" | null | undefined;
2531
+ variant?: "default" | "bordered" | "card" | null | undefined;
2529
2532
  size?: "sm" | "md" | "lg" | null | undefined;
2530
2533
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2531
2534
  interface QRCodeProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "title">, VariantProps<typeof qrCodeVariants> {
@@ -2575,7 +2578,7 @@ interface ThemeProviderProps {
2575
2578
  declare const ThemeProvider: React$1.FC<ThemeProviderProps>;
2576
2579
 
2577
2580
  declare const themeToggleVariants: (props?: ({
2578
- variant?: "ghost" | "bordered" | "default" | null | undefined;
2581
+ variant?: "ghost" | "default" | "bordered" | null | undefined;
2579
2582
  size?: "sm" | "md" | "lg" | null | undefined;
2580
2583
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2581
2584
  interface ThemeToggleProps extends VariantProps<typeof themeToggleVariants> {
@@ -2893,11 +2896,11 @@ interface ActionMenuProps extends VariantProps<typeof actionMenuTriggerVariants>
2893
2896
  declare const ActionMenu: React$1.ForwardRefExoticComponent<ActionMenuProps & React$1.RefAttributes<HTMLButtonElement>>;
2894
2897
 
2895
2898
  declare const listViewVariants: (props?: ({
2896
- variant?: "bordered" | "default" | "cards" | null | undefined;
2899
+ variant?: "default" | "bordered" | "cards" | null | undefined;
2897
2900
  size?: "sm" | "md" | "lg" | null | undefined;
2898
2901
  } & class_variance_authority_types.ClassProp) | undefined) => string;
2899
2902
  declare const listViewItemVariants: (props?: ({
2900
- variant?: "bordered" | "default" | "cards" | null | undefined;
2903
+ variant?: "default" | "bordered" | "cards" | null | undefined;
2901
2904
  size?: "sm" | "md" | "lg" | null | undefined;
2902
2905
  isSelected?: boolean | null | undefined;
2903
2906
  isDisabled?: boolean | null | undefined;
@@ -3716,7 +3719,7 @@ declare const AppShellFooter: React$1.ForwardRefExoticComponent<AppShellFooterPr
3716
3719
  declare const AppShellMain: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLDivElement> & React$1.RefAttributes<HTMLDivElement>>;
3717
3720
 
3718
3721
  declare const dashboardLayoutVariants: (props?: ({
3719
- variant?: "bordered" | "default" | "filled" | null | undefined;
3722
+ variant?: "default" | "bordered" | "filled" | null | undefined;
3720
3723
  } & class_variance_authority_types.ClassProp) | undefined) => string;
3721
3724
  interface DashboardLayoutProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof dashboardLayoutVariants> {
3722
3725
  /** Navigation items for sidebar */