katalyst-riya-test 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,257 @@
1
+ import React, { ButtonHTMLAttributes, ReactNode, HTMLAttributes, InputHTMLAttributes, LabelHTMLAttributes, TextareaHTMLAttributes, ElementType } from 'react';
2
+ import * as class_variance_authority_types from 'class-variance-authority/types';
3
+ import { VariantProps } from 'class-variance-authority';
4
+
5
+ type AccordionProps = {
6
+ type?: "single" | "multiple";
7
+ collapsible?: boolean;
8
+ className?: string;
9
+ children: React.ReactNode;
10
+ };
11
+ declare function Accordion({ type, collapsible, className, children, }: AccordionProps): React.JSX.Element;
12
+ type AccordionItemProps = {
13
+ value: string;
14
+ disabled?: boolean;
15
+ openItems?: string[];
16
+ handleToggle?: (value: string) => void;
17
+ children: React.ReactNode;
18
+ };
19
+ declare function AccordionItem({ value, disabled, openItems, handleToggle, children, }: AccordionItemProps): React.JSX.Element;
20
+ type AccordionTriggerProps = {
21
+ isOpen?: boolean;
22
+ children: React.ReactNode;
23
+ };
24
+ declare function AccordionTrigger({ isOpen, children }: AccordionTriggerProps): React.JSX.Element;
25
+ type AccordionContentProps = {
26
+ isOpen?: boolean;
27
+ children: React.ReactNode;
28
+ };
29
+ declare function AccordionContent({ isOpen, children }: AccordionContentProps): React.JSX.Element;
30
+
31
+ interface ButtonProps$2 extends ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
32
+ children?: ReactNode;
33
+ startIcon?: JSX.Element;
34
+ endIcon?: JSX.Element;
35
+ disabled?: boolean;
36
+ fullWidth?: boolean;
37
+ rounded?: boolean;
38
+ }
39
+ declare const buttonVariants: (props?: ({
40
+ variant?: "primary" | "primary-light" | "secondary" | "tertiary" | "quaternary" | null | undefined;
41
+ size?: "sm" | "md" | "lg" | null | undefined;
42
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
43
+ declare const Button: ({ children, startIcon, endIcon, fullWidth, rounded, disabled, className, variant, size, ...props }: ButtonProps$2) => React.JSX.Element;
44
+
45
+ interface CaptionProps extends HTMLAttributes<HTMLSpanElement>, VariantProps<typeof captionVariants> {
46
+ children: ReactNode;
47
+ }
48
+ declare const captionVariants: (props?: ({
49
+ variant?: "sm" | "md" | null | undefined;
50
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
51
+ declare const Caption: ({ children, variant, className, ...props }: CaptionProps) => React.JSX.Element;
52
+
53
+ interface CardProps {
54
+ children?: ReactNode;
55
+ className?: string;
56
+ }
57
+ interface CardBgProps extends CardProps {
58
+ src?: string;
59
+ alt?: string;
60
+ width?: number;
61
+ height?: number;
62
+ }
63
+ declare function Card({ children, className }: CardProps): React.JSX.Element;
64
+ declare const CardIcon: ({ children, className }: CardProps) => React.JSX.Element;
65
+ declare const CardHeader: ({ children, className }: CardProps) => React.JSX.Element;
66
+ declare const CardBg: ({ children, className, src, alt, width, height, }: CardBgProps) => React.JSX.Element;
67
+ declare const CardTitle: ({ children, className }: CardProps) => React.JSX.Element;
68
+ declare const CardDescription: ({ children, className }: CardProps) => React.JSX.Element;
69
+ declare const CardContent: ({ children, className }: CardProps) => React.JSX.Element;
70
+ declare const CardFooter: ({ children, className }: CardProps) => React.JSX.Element;
71
+
72
+ interface CheckboxProps extends HTMLAttributes<HTMLInputElement> {
73
+ disabled?: boolean;
74
+ checked?: boolean;
75
+ readOnly?: boolean;
76
+ children?: never;
77
+ }
78
+ declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
79
+
80
+ interface ButtonProps$1 extends HTMLAttributes<HTMLDivElement>, VariantProps<typeof chipVariants> {
81
+ children?: ReactNode;
82
+ startIcon?: JSX.Element;
83
+ endIcon?: JSX.Element;
84
+ }
85
+ declare const chipVariants: (props?: ({
86
+ variant?: "primary" | "secondary" | "glass" | null | undefined;
87
+ size?: "sm" | "md" | "lg" | null | undefined;
88
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
89
+ declare const Chip: ({ children, className, variant, startIcon, endIcon, size, ...props }: ButtonProps$1) => React.JSX.Element;
90
+
91
+ interface DropdownProps {
92
+ triggerIcon?: React.ReactNode;
93
+ children: React.ReactNode;
94
+ width?: string;
95
+ }
96
+ declare function Dropdown({ triggerIcon, children, width, }: DropdownProps): React.JSX.Element;
97
+ interface MenuItemProps {
98
+ label: string;
99
+ onClick?: () => void;
100
+ disabled?: boolean;
101
+ children?: React.ReactNode;
102
+ }
103
+ declare const MenuItem: React.FC<MenuItemProps>;
104
+ interface MenuSubItemProps {
105
+ label: string;
106
+ children: React.ReactNode;
107
+ }
108
+ declare const MenuSubItem: React.FC<MenuSubItemProps>;
109
+
110
+ interface FooterProps {
111
+ children: ReactNode;
112
+ className?: string;
113
+ footerBottom?: JSX.Element;
114
+ }
115
+ interface FooterHeaderProps {
116
+ children: ReactNode;
117
+ className?: string;
118
+ }
119
+ interface FooterContentProps {
120
+ children: ReactNode;
121
+ className?: string;
122
+ }
123
+ type FooterListType = {
124
+ text: string;
125
+ link: string;
126
+ };
127
+ interface FooterListProps {
128
+ footerItems: {
129
+ label: string;
130
+ content: FooterListType[];
131
+ }[];
132
+ target?: "_blank" | "_self" | "_top" | "_parent";
133
+ }
134
+ type FooterIconType = {
135
+ icon: JSX.Element;
136
+ link: string;
137
+ };
138
+ interface FooterIconsProps {
139
+ icons: FooterIconType[];
140
+ }
141
+ declare function Footer({ children, className, footerBottom, }: FooterProps): React.JSX.Element;
142
+ declare const FooterHeader: ({ children, className }: FooterHeaderProps) => React.JSX.Element;
143
+ declare const FooterContent: ({ children, className }: FooterContentProps) => React.JSX.Element;
144
+ declare const FooterList: ({ footerItems, target }: FooterListProps) => React.JSX.Element;
145
+ declare const FooterIcons: ({ icons }: FooterIconsProps) => React.JSX.Element;
146
+
147
+ interface ImageCardProps {
148
+ children?: ReactNode;
149
+ className?: string;
150
+ cardTitle?: string;
151
+ cardDesc?: string;
152
+ cardImg?: string;
153
+ }
154
+ declare const ImageCard: ({ cardTitle, cardDesc, cardImg, children, className, }: ImageCardProps) => React.JSX.Element;
155
+
156
+ interface InputProps extends InputHTMLAttributes<HTMLInputElement>, VariantProps<typeof inputVariants> {
157
+ startIcon?: JSX.Element;
158
+ endIcon?: JSX.Element;
159
+ disabled?: boolean;
160
+ type: "text" | "url" | "email" | "password" | "number" | "tel" | "search";
161
+ }
162
+ declare const inputVariants: (props?: ({
163
+ variant?: "default" | "glass" | null | undefined;
164
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
165
+ declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
166
+
167
+ interface LabelProps extends LabelHTMLAttributes<HTMLLabelElement>, VariantProps<typeof labelVariants> {
168
+ htmlFor?: string;
169
+ children: ReactNode;
170
+ required?: boolean;
171
+ disabled?: boolean;
172
+ }
173
+ declare const labelVariants: (props?: ({
174
+ size?: "sm" | "md" | "lg" | null | undefined;
175
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
176
+ declare const Label: ({ children, htmlFor, size, required, disabled, className, ...props }: LabelProps) => React.JSX.Element;
177
+
178
+ interface BaseProps {
179
+ className?: string;
180
+ children?: React.ReactNode;
181
+ title: string;
182
+ as?: "link" | "button";
183
+ variant?: "solid" | "glass";
184
+ icon?: React.ReactNode;
185
+ }
186
+ type LinkProps = BaseProps & {
187
+ as: "link";
188
+ href: string;
189
+ onClick?: never;
190
+ className?: string;
191
+ };
192
+ type ButtonProps = BaseProps & {
193
+ as: "button";
194
+ href?: never;
195
+ onClick?: () => void;
196
+ className?: string;
197
+ };
198
+ type ListItemProps = LinkProps | ButtonProps;
199
+ declare const ListItem: React.ForwardRefExoticComponent<ListItemProps & React.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
200
+
201
+ interface ParagraphProps extends HTMLAttributes<HTMLParagraphElement>, VariantProps<typeof paragraphVariants> {
202
+ children: ReactNode;
203
+ }
204
+ declare const paragraphVariants: (props?: ({
205
+ variant?: "b1" | "b2" | "b3" | "b4" | null | undefined;
206
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
207
+ declare const Paragraph: ({ children, className, variant, ...props }: ParagraphProps) => React.JSX.Element;
208
+
209
+ interface SliderProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size"> {
210
+ value: number;
211
+ min?: number;
212
+ max?: number;
213
+ size?: "sm" | "lg";
214
+ }
215
+ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<HTMLInputElement>>;
216
+
217
+ interface StatsCardProps {
218
+ children?: ReactNode;
219
+ cardIcon?: ReactNode;
220
+ className?: string;
221
+ statTitle?: string;
222
+ statDesc?: string;
223
+ }
224
+ declare const StatsCard: ({ statTitle, statDesc, className, cardIcon, }: StatsCardProps) => React.JSX.Element;
225
+
226
+ interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
227
+ disabled?: boolean;
228
+ rows?: number;
229
+ cols?: number;
230
+ children?: ReactNode;
231
+ }
232
+ declare const textareaVariants: (props?: ({
233
+ variant?: "default" | "glass" | null | undefined;
234
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
235
+ declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
236
+
237
+ interface ToggleProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size">, VariantProps<typeof toggleVariants> {
238
+ icon?: JSX.Element;
239
+ children?: never;
240
+ size?: "sm" | "lg";
241
+ disabled?: boolean;
242
+ }
243
+ declare const toggleVariants: (props?: ({
244
+ size?: "sm" | "lg" | null | undefined;
245
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
246
+ declare const Toggle: React.ForwardRefExoticComponent<ToggleProps & React.RefAttributes<HTMLInputElement>>;
247
+
248
+ interface TypographyProps extends HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof typographyVariant> {
249
+ as?: ElementType;
250
+ children: ReactNode;
251
+ }
252
+ declare const typographyVariant: (props?: ({
253
+ variant?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | null | undefined;
254
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
255
+ declare const Typography: ({ as, variant, children, className, ...props }: TypographyProps) => React.JSX.Element;
256
+
257
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Button, Caption, Card, CardBg, CardContent, CardDescription, CardFooter, CardHeader, CardIcon, CardTitle, Checkbox, Chip, Dropdown, Footer, FooterContent, FooterHeader, FooterIcons, FooterList, ImageCard, Input, Label, ListItem, MenuItem, MenuSubItem, Paragraph, Slider, StatsCard, Textarea, Toggle, Typography };
@@ -0,0 +1,257 @@
1
+ import React, { ButtonHTMLAttributes, ReactNode, HTMLAttributes, InputHTMLAttributes, LabelHTMLAttributes, TextareaHTMLAttributes, ElementType } from 'react';
2
+ import * as class_variance_authority_types from 'class-variance-authority/types';
3
+ import { VariantProps } from 'class-variance-authority';
4
+
5
+ type AccordionProps = {
6
+ type?: "single" | "multiple";
7
+ collapsible?: boolean;
8
+ className?: string;
9
+ children: React.ReactNode;
10
+ };
11
+ declare function Accordion({ type, collapsible, className, children, }: AccordionProps): React.JSX.Element;
12
+ type AccordionItemProps = {
13
+ value: string;
14
+ disabled?: boolean;
15
+ openItems?: string[];
16
+ handleToggle?: (value: string) => void;
17
+ children: React.ReactNode;
18
+ };
19
+ declare function AccordionItem({ value, disabled, openItems, handleToggle, children, }: AccordionItemProps): React.JSX.Element;
20
+ type AccordionTriggerProps = {
21
+ isOpen?: boolean;
22
+ children: React.ReactNode;
23
+ };
24
+ declare function AccordionTrigger({ isOpen, children }: AccordionTriggerProps): React.JSX.Element;
25
+ type AccordionContentProps = {
26
+ isOpen?: boolean;
27
+ children: React.ReactNode;
28
+ };
29
+ declare function AccordionContent({ isOpen, children }: AccordionContentProps): React.JSX.Element;
30
+
31
+ interface ButtonProps$2 extends ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
32
+ children?: ReactNode;
33
+ startIcon?: JSX.Element;
34
+ endIcon?: JSX.Element;
35
+ disabled?: boolean;
36
+ fullWidth?: boolean;
37
+ rounded?: boolean;
38
+ }
39
+ declare const buttonVariants: (props?: ({
40
+ variant?: "primary" | "primary-light" | "secondary" | "tertiary" | "quaternary" | null | undefined;
41
+ size?: "sm" | "md" | "lg" | null | undefined;
42
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
43
+ declare const Button: ({ children, startIcon, endIcon, fullWidth, rounded, disabled, className, variant, size, ...props }: ButtonProps$2) => React.JSX.Element;
44
+
45
+ interface CaptionProps extends HTMLAttributes<HTMLSpanElement>, VariantProps<typeof captionVariants> {
46
+ children: ReactNode;
47
+ }
48
+ declare const captionVariants: (props?: ({
49
+ variant?: "sm" | "md" | null | undefined;
50
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
51
+ declare const Caption: ({ children, variant, className, ...props }: CaptionProps) => React.JSX.Element;
52
+
53
+ interface CardProps {
54
+ children?: ReactNode;
55
+ className?: string;
56
+ }
57
+ interface CardBgProps extends CardProps {
58
+ src?: string;
59
+ alt?: string;
60
+ width?: number;
61
+ height?: number;
62
+ }
63
+ declare function Card({ children, className }: CardProps): React.JSX.Element;
64
+ declare const CardIcon: ({ children, className }: CardProps) => React.JSX.Element;
65
+ declare const CardHeader: ({ children, className }: CardProps) => React.JSX.Element;
66
+ declare const CardBg: ({ children, className, src, alt, width, height, }: CardBgProps) => React.JSX.Element;
67
+ declare const CardTitle: ({ children, className }: CardProps) => React.JSX.Element;
68
+ declare const CardDescription: ({ children, className }: CardProps) => React.JSX.Element;
69
+ declare const CardContent: ({ children, className }: CardProps) => React.JSX.Element;
70
+ declare const CardFooter: ({ children, className }: CardProps) => React.JSX.Element;
71
+
72
+ interface CheckboxProps extends HTMLAttributes<HTMLInputElement> {
73
+ disabled?: boolean;
74
+ checked?: boolean;
75
+ readOnly?: boolean;
76
+ children?: never;
77
+ }
78
+ declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
79
+
80
+ interface ButtonProps$1 extends HTMLAttributes<HTMLDivElement>, VariantProps<typeof chipVariants> {
81
+ children?: ReactNode;
82
+ startIcon?: JSX.Element;
83
+ endIcon?: JSX.Element;
84
+ }
85
+ declare const chipVariants: (props?: ({
86
+ variant?: "primary" | "secondary" | "glass" | null | undefined;
87
+ size?: "sm" | "md" | "lg" | null | undefined;
88
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
89
+ declare const Chip: ({ children, className, variant, startIcon, endIcon, size, ...props }: ButtonProps$1) => React.JSX.Element;
90
+
91
+ interface DropdownProps {
92
+ triggerIcon?: React.ReactNode;
93
+ children: React.ReactNode;
94
+ width?: string;
95
+ }
96
+ declare function Dropdown({ triggerIcon, children, width, }: DropdownProps): React.JSX.Element;
97
+ interface MenuItemProps {
98
+ label: string;
99
+ onClick?: () => void;
100
+ disabled?: boolean;
101
+ children?: React.ReactNode;
102
+ }
103
+ declare const MenuItem: React.FC<MenuItemProps>;
104
+ interface MenuSubItemProps {
105
+ label: string;
106
+ children: React.ReactNode;
107
+ }
108
+ declare const MenuSubItem: React.FC<MenuSubItemProps>;
109
+
110
+ interface FooterProps {
111
+ children: ReactNode;
112
+ className?: string;
113
+ footerBottom?: JSX.Element;
114
+ }
115
+ interface FooterHeaderProps {
116
+ children: ReactNode;
117
+ className?: string;
118
+ }
119
+ interface FooterContentProps {
120
+ children: ReactNode;
121
+ className?: string;
122
+ }
123
+ type FooterListType = {
124
+ text: string;
125
+ link: string;
126
+ };
127
+ interface FooterListProps {
128
+ footerItems: {
129
+ label: string;
130
+ content: FooterListType[];
131
+ }[];
132
+ target?: "_blank" | "_self" | "_top" | "_parent";
133
+ }
134
+ type FooterIconType = {
135
+ icon: JSX.Element;
136
+ link: string;
137
+ };
138
+ interface FooterIconsProps {
139
+ icons: FooterIconType[];
140
+ }
141
+ declare function Footer({ children, className, footerBottom, }: FooterProps): React.JSX.Element;
142
+ declare const FooterHeader: ({ children, className }: FooterHeaderProps) => React.JSX.Element;
143
+ declare const FooterContent: ({ children, className }: FooterContentProps) => React.JSX.Element;
144
+ declare const FooterList: ({ footerItems, target }: FooterListProps) => React.JSX.Element;
145
+ declare const FooterIcons: ({ icons }: FooterIconsProps) => React.JSX.Element;
146
+
147
+ interface ImageCardProps {
148
+ children?: ReactNode;
149
+ className?: string;
150
+ cardTitle?: string;
151
+ cardDesc?: string;
152
+ cardImg?: string;
153
+ }
154
+ declare const ImageCard: ({ cardTitle, cardDesc, cardImg, children, className, }: ImageCardProps) => React.JSX.Element;
155
+
156
+ interface InputProps extends InputHTMLAttributes<HTMLInputElement>, VariantProps<typeof inputVariants> {
157
+ startIcon?: JSX.Element;
158
+ endIcon?: JSX.Element;
159
+ disabled?: boolean;
160
+ type: "text" | "url" | "email" | "password" | "number" | "tel" | "search";
161
+ }
162
+ declare const inputVariants: (props?: ({
163
+ variant?: "default" | "glass" | null | undefined;
164
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
165
+ declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
166
+
167
+ interface LabelProps extends LabelHTMLAttributes<HTMLLabelElement>, VariantProps<typeof labelVariants> {
168
+ htmlFor?: string;
169
+ children: ReactNode;
170
+ required?: boolean;
171
+ disabled?: boolean;
172
+ }
173
+ declare const labelVariants: (props?: ({
174
+ size?: "sm" | "md" | "lg" | null | undefined;
175
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
176
+ declare const Label: ({ children, htmlFor, size, required, disabled, className, ...props }: LabelProps) => React.JSX.Element;
177
+
178
+ interface BaseProps {
179
+ className?: string;
180
+ children?: React.ReactNode;
181
+ title: string;
182
+ as?: "link" | "button";
183
+ variant?: "solid" | "glass";
184
+ icon?: React.ReactNode;
185
+ }
186
+ type LinkProps = BaseProps & {
187
+ as: "link";
188
+ href: string;
189
+ onClick?: never;
190
+ className?: string;
191
+ };
192
+ type ButtonProps = BaseProps & {
193
+ as: "button";
194
+ href?: never;
195
+ onClick?: () => void;
196
+ className?: string;
197
+ };
198
+ type ListItemProps = LinkProps | ButtonProps;
199
+ declare const ListItem: React.ForwardRefExoticComponent<ListItemProps & React.RefAttributes<HTMLButtonElement | HTMLAnchorElement>>;
200
+
201
+ interface ParagraphProps extends HTMLAttributes<HTMLParagraphElement>, VariantProps<typeof paragraphVariants> {
202
+ children: ReactNode;
203
+ }
204
+ declare const paragraphVariants: (props?: ({
205
+ variant?: "b1" | "b2" | "b3" | "b4" | null | undefined;
206
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
207
+ declare const Paragraph: ({ children, className, variant, ...props }: ParagraphProps) => React.JSX.Element;
208
+
209
+ interface SliderProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size"> {
210
+ value: number;
211
+ min?: number;
212
+ max?: number;
213
+ size?: "sm" | "lg";
214
+ }
215
+ declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<HTMLInputElement>>;
216
+
217
+ interface StatsCardProps {
218
+ children?: ReactNode;
219
+ cardIcon?: ReactNode;
220
+ className?: string;
221
+ statTitle?: string;
222
+ statDesc?: string;
223
+ }
224
+ declare const StatsCard: ({ statTitle, statDesc, className, cardIcon, }: StatsCardProps) => React.JSX.Element;
225
+
226
+ interface TextareaProps extends TextareaHTMLAttributes<HTMLTextAreaElement>, VariantProps<typeof textareaVariants> {
227
+ disabled?: boolean;
228
+ rows?: number;
229
+ cols?: number;
230
+ children?: ReactNode;
231
+ }
232
+ declare const textareaVariants: (props?: ({
233
+ variant?: "default" | "glass" | null | undefined;
234
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
235
+ declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
236
+
237
+ interface ToggleProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size">, VariantProps<typeof toggleVariants> {
238
+ icon?: JSX.Element;
239
+ children?: never;
240
+ size?: "sm" | "lg";
241
+ disabled?: boolean;
242
+ }
243
+ declare const toggleVariants: (props?: ({
244
+ size?: "sm" | "lg" | null | undefined;
245
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
246
+ declare const Toggle: React.ForwardRefExoticComponent<ToggleProps & React.RefAttributes<HTMLInputElement>>;
247
+
248
+ interface TypographyProps extends HTMLAttributes<HTMLHeadingElement>, VariantProps<typeof typographyVariant> {
249
+ as?: ElementType;
250
+ children: ReactNode;
251
+ }
252
+ declare const typographyVariant: (props?: ({
253
+ variant?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | null | undefined;
254
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
255
+ declare const Typography: ({ as, variant, children, className, ...props }: TypographyProps) => React.JSX.Element;
256
+
257
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Button, Caption, Card, CardBg, CardContent, CardDescription, CardFooter, CardHeader, CardIcon, CardTitle, Checkbox, Chip, Dropdown, Footer, FooterContent, FooterHeader, FooterIcons, FooterList, ImageCard, Input, Label, ListItem, MenuItem, MenuSubItem, Paragraph, Slider, StatsCard, Textarea, Toggle, Typography };