solid-element-ui 0.2.1 → 0.2.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.
Files changed (53) hide show
  1. package/README.md +28 -0
  2. package/dist/index.css +1 -1
  3. package/dist/index.js +16703 -9983
  4. package/dist/src/accordion/accordion.d.ts +76 -0
  5. package/dist/src/alert/alert.d.ts +86 -0
  6. package/dist/src/alert-dialog/alert-dialog.d.ts +11 -0
  7. package/dist/src/badge/badge.d.ts +33 -0
  8. package/dist/src/breadcrumbs/breadcrumbs.d.ts +14 -0
  9. package/dist/src/button/button.d.ts +165 -0
  10. package/dist/src/checkbox/checkbox.d.ts +6 -0
  11. package/dist/src/collapsible/collapsible.d.ts +8 -0
  12. package/dist/src/color-area/color-area.d.ts +5 -0
  13. package/dist/src/color-channel-field/color-channel-field.d.ts +6 -0
  14. package/dist/src/color-field/color-field.d.ts +8 -0
  15. package/dist/src/color-slider/color-slider.d.ts +7 -0
  16. package/dist/src/color-swatch/color-swatch.d.ts +5 -0
  17. package/dist/src/color-wheel/color-wheel.d.ts +6 -0
  18. package/dist/src/combobox/combobox.d.ts +11 -0
  19. package/dist/src/context-menu/context-menu.d.ts +15 -0
  20. package/dist/src/dialog/dialog.d.ts +13 -0
  21. package/dist/src/dropdown-menu/dropdown-menu.d.ts +16 -0
  22. package/dist/src/file-field/file-field.d.ts +71 -0
  23. package/dist/src/hover-card/hover-card.d.ts +56 -0
  24. package/dist/src/image/image.d.ts +78 -0
  25. package/dist/src/index.d.ts +43 -0
  26. package/dist/src/link/link.d.ts +46 -0
  27. package/dist/src/menubar/menubar.d.ts +10 -0
  28. package/dist/src/meter/meter.d.ts +72 -0
  29. package/dist/src/navigation-menu/navigation-menu.d.ts +12 -0
  30. package/dist/src/number-field/number-field.d.ts +72 -0
  31. package/dist/src/pagination/pagination.d.ts +5 -0
  32. package/dist/src/popover/popover.d.ts +7 -0
  33. package/dist/src/progress/progress.d.ts +128 -0
  34. package/dist/src/radio-group/radio-group.d.ts +69 -0
  35. package/dist/src/rating-group/rating-group.d.ts +1 -0
  36. package/dist/src/search/search.d.ts +109 -0
  37. package/dist/src/segmented-control/segmented-control.d.ts +83 -0
  38. package/dist/src/select/select.d.ts +94 -0
  39. package/dist/src/separator/separator.d.ts +55 -0
  40. package/dist/src/skeleton/skeleton.d.ts +45 -0
  41. package/dist/src/slider/slider.d.ts +123 -0
  42. package/dist/src/switch/switch.d.ts +108 -0
  43. package/dist/src/tabs/tabs.d.ts +17 -0
  44. package/dist/src/text-field/text-field.d.ts +69 -0
  45. package/dist/src/time-field/time-field.d.ts +1 -0
  46. package/dist/src/toast/toast.d.ts +91 -0
  47. package/dist/src/toggle-button/toggle-button.d.ts +47 -0
  48. package/dist/src/toggle-group/toggle-group.d.ts +91 -0
  49. package/dist/src/tooltip/tooltip.d.ts +53 -0
  50. package/package.json +31 -43
  51. package/dist/index.d.ts +0 -74
  52. package/index.tsx +0 -98
  53. package/readme.md +0 -9
@@ -0,0 +1,76 @@
1
+ import { AccordionRootProps } from '@kobalte/core/accordion';
2
+ import { JSX } from 'solid-js';
3
+ import { VariantProps } from 'tailwind-variants';
4
+ declare const accordionStyles: import('tailwind-variants').TVReturnType<{
5
+ [key: string]: {
6
+ [key: string]: import('tailwind-variants').ClassValue | {
7
+ root?: import('tailwind-variants').ClassValue;
8
+ item?: import('tailwind-variants').ClassValue;
9
+ header?: import('tailwind-variants').ClassValue;
10
+ contentInner?: import('tailwind-variants').ClassValue;
11
+ icon?: import('tailwind-variants').ClassValue;
12
+ trigger?: import('tailwind-variants').ClassValue;
13
+ content?: import('tailwind-variants').ClassValue;
14
+ };
15
+ };
16
+ } | {
17
+ [x: string]: {
18
+ [x: string]: import('tailwind-variants').ClassValue | {
19
+ root?: import('tailwind-variants').ClassValue;
20
+ item?: import('tailwind-variants').ClassValue;
21
+ header?: import('tailwind-variants').ClassValue;
22
+ contentInner?: import('tailwind-variants').ClassValue;
23
+ icon?: import('tailwind-variants').ClassValue;
24
+ trigger?: import('tailwind-variants').ClassValue;
25
+ content?: import('tailwind-variants').ClassValue;
26
+ };
27
+ };
28
+ } | {}, {
29
+ root: string;
30
+ item: string;
31
+ header: string;
32
+ trigger: string[];
33
+ content: string[];
34
+ contentInner: string;
35
+ icon: string;
36
+ }, undefined, {
37
+ [key: string]: {
38
+ [key: string]: import('tailwind-variants').ClassValue | {
39
+ root?: import('tailwind-variants').ClassValue;
40
+ item?: import('tailwind-variants').ClassValue;
41
+ header?: import('tailwind-variants').ClassValue;
42
+ contentInner?: import('tailwind-variants').ClassValue;
43
+ icon?: import('tailwind-variants').ClassValue;
44
+ trigger?: import('tailwind-variants').ClassValue;
45
+ content?: import('tailwind-variants').ClassValue;
46
+ };
47
+ };
48
+ } | {}, {
49
+ root: string;
50
+ item: string;
51
+ header: string;
52
+ trigger: string[];
53
+ content: string[];
54
+ contentInner: string;
55
+ icon: string;
56
+ }, import('tailwind-variants').TVReturnType<unknown, {
57
+ root: string;
58
+ item: string;
59
+ header: string;
60
+ trigger: string[];
61
+ content: string[];
62
+ contentInner: string;
63
+ icon: string;
64
+ }, undefined, unknown, unknown, undefined>>;
65
+ export interface AccordionItem {
66
+ value: string;
67
+ title: JSX.Element;
68
+ content: JSX.Element;
69
+ disabled?: boolean;
70
+ }
71
+ interface AccordionProps extends AccordionRootProps, VariantProps<typeof accordionStyles> {
72
+ items: AccordionItem[];
73
+ class?: string;
74
+ }
75
+ export declare const Accordion: (props: AccordionProps) => JSX.Element;
76
+ export {};
@@ -0,0 +1,86 @@
1
+ import { Alert as KAlert } from '@kobalte/core/alert';
2
+ import { JSX, ComponentProps } from 'solid-js';
3
+ import { VariantProps } from 'tailwind-variants';
4
+ declare const alertStyles: import('tailwind-variants').TVReturnType<{
5
+ variant: {
6
+ info: {
7
+ root: string;
8
+ icon: string;
9
+ };
10
+ success: {
11
+ root: string;
12
+ icon: string;
13
+ };
14
+ warning: {
15
+ root: string;
16
+ icon: string;
17
+ };
18
+ danger: {
19
+ root: string;
20
+ icon: string;
21
+ };
22
+ };
23
+ }, {
24
+ root: string;
25
+ content: string;
26
+ title: string;
27
+ children: string;
28
+ icon: string;
29
+ }, undefined, {
30
+ variant: {
31
+ info: {
32
+ root: string;
33
+ icon: string;
34
+ };
35
+ success: {
36
+ root: string;
37
+ icon: string;
38
+ };
39
+ warning: {
40
+ root: string;
41
+ icon: string;
42
+ };
43
+ danger: {
44
+ root: string;
45
+ icon: string;
46
+ };
47
+ };
48
+ }, {
49
+ root: string;
50
+ content: string;
51
+ title: string;
52
+ children: string;
53
+ icon: string;
54
+ }, import('tailwind-variants').TVReturnType<{
55
+ variant: {
56
+ info: {
57
+ root: string;
58
+ icon: string;
59
+ };
60
+ success: {
61
+ root: string;
62
+ icon: string;
63
+ };
64
+ warning: {
65
+ root: string;
66
+ icon: string;
67
+ };
68
+ danger: {
69
+ root: string;
70
+ icon: string;
71
+ };
72
+ };
73
+ }, {
74
+ root: string;
75
+ content: string;
76
+ title: string;
77
+ children: string;
78
+ icon: string;
79
+ }, undefined, unknown, unknown, undefined>>;
80
+ type AlertVariants = VariantProps<typeof alertStyles>;
81
+ export interface AlertProps extends ComponentProps<typeof KAlert>, AlertVariants {
82
+ title?: string;
83
+ icon?: boolean | JSX.Element;
84
+ }
85
+ export declare const Alert: (props: AlertProps) => JSX.Element;
86
+ export {};
@@ -0,0 +1,11 @@
1
+ import { AlertDialog as KAlertDialog } from '@kobalte/core/alert-dialog';
2
+ import { JSX, ComponentProps } from 'solid-js';
3
+ interface AlertDialogProps extends ComponentProps<typeof KAlertDialog> {
4
+ trigger: JSX.Element;
5
+ title: string;
6
+ description?: string;
7
+ action: JSX.Element;
8
+ cancel?: JSX.Element;
9
+ }
10
+ export declare const AlertDialog: (props: AlertDialogProps) => JSX.Element;
11
+ export {};
@@ -0,0 +1,33 @@
1
+ import { Badge as KBadge } from '@kobalte/core/badge';
2
+ import { ComponentProps } from 'solid-js';
3
+ import { VariantProps } from 'tailwind-variants';
4
+ declare const badgeStyles: import('tailwind-variants').TVReturnType<{
5
+ variant: {
6
+ default: string;
7
+ secondary: string;
8
+ outline: string;
9
+ success: string;
10
+ danger: string;
11
+ };
12
+ }, undefined, "inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none", {
13
+ variant: {
14
+ default: string;
15
+ secondary: string;
16
+ outline: string;
17
+ success: string;
18
+ danger: string;
19
+ };
20
+ }, undefined, import('tailwind-variants').TVReturnType<{
21
+ variant: {
22
+ default: string;
23
+ secondary: string;
24
+ outline: string;
25
+ success: string;
26
+ danger: string;
27
+ };
28
+ }, undefined, "inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none", unknown, unknown, undefined>>;
29
+ type BadgeVariants = VariantProps<typeof badgeStyles>;
30
+ export interface BadgeProps extends ComponentProps<typeof KBadge>, BadgeVariants {
31
+ }
32
+ export declare const Badge: (props: BadgeProps) => import("solid-js").JSX.Element;
33
+ export {};
@@ -0,0 +1,14 @@
1
+ import { Breadcrumbs as KBreadcrumbs } from '@kobalte/core/breadcrumbs';
2
+ import { JSX, ComponentProps } from 'solid-js';
3
+ export interface BreadcrumbItem {
4
+ title: JSX.Element;
5
+ href?: string;
6
+ current?: boolean;
7
+ disabled?: boolean;
8
+ }
9
+ interface BreadcrumbsProps extends ComponentProps<typeof KBreadcrumbs> {
10
+ items: BreadcrumbItem[];
11
+ separatorIcon?: JSX.Element;
12
+ }
13
+ export declare const Breadcrumbs: (props: BreadcrumbsProps) => JSX.Element;
14
+ export {};
@@ -0,0 +1,165 @@
1
+ import { Button as KButton } from '@kobalte/core/button';
2
+ import { JSX, ComponentProps } from 'solid-js';
3
+ import { VariantProps } from 'tailwind-variants';
4
+ declare const buttonStyles: import('tailwind-variants').TVReturnType<{
5
+ size: {
6
+ sm: {
7
+ base: string;
8
+ };
9
+ md: {
10
+ base: string;
11
+ };
12
+ lg: {
13
+ base: string;
14
+ };
15
+ };
16
+ loading: {
17
+ true: {
18
+ base: string;
19
+ };
20
+ };
21
+ variant: {
22
+ default: {
23
+ base: string;
24
+ };
25
+ outline: {
26
+ base: string;
27
+ };
28
+ dashed: {
29
+ base: string;
30
+ };
31
+ filled: {
32
+ base: string;
33
+ };
34
+ text: {
35
+ base: string;
36
+ };
37
+ };
38
+ color: {
39
+ primary: {
40
+ base: string;
41
+ };
42
+ success: {
43
+ base: string;
44
+ };
45
+ warning: {
46
+ base: string;
47
+ };
48
+ danger: {
49
+ base: string;
50
+ };
51
+ };
52
+ }, {
53
+ base: string;
54
+ icon: string;
55
+ }, undefined, {
56
+ size: {
57
+ sm: {
58
+ base: string;
59
+ };
60
+ md: {
61
+ base: string;
62
+ };
63
+ lg: {
64
+ base: string;
65
+ };
66
+ };
67
+ loading: {
68
+ true: {
69
+ base: string;
70
+ };
71
+ };
72
+ variant: {
73
+ default: {
74
+ base: string;
75
+ };
76
+ outline: {
77
+ base: string;
78
+ };
79
+ dashed: {
80
+ base: string;
81
+ };
82
+ filled: {
83
+ base: string;
84
+ };
85
+ text: {
86
+ base: string;
87
+ };
88
+ };
89
+ color: {
90
+ primary: {
91
+ base: string;
92
+ };
93
+ success: {
94
+ base: string;
95
+ };
96
+ warning: {
97
+ base: string;
98
+ };
99
+ danger: {
100
+ base: string;
101
+ };
102
+ };
103
+ }, {
104
+ base: string;
105
+ icon: string;
106
+ }, import('tailwind-variants').TVReturnType<{
107
+ size: {
108
+ sm: {
109
+ base: string;
110
+ };
111
+ md: {
112
+ base: string;
113
+ };
114
+ lg: {
115
+ base: string;
116
+ };
117
+ };
118
+ loading: {
119
+ true: {
120
+ base: string;
121
+ };
122
+ };
123
+ variant: {
124
+ default: {
125
+ base: string;
126
+ };
127
+ outline: {
128
+ base: string;
129
+ };
130
+ dashed: {
131
+ base: string;
132
+ };
133
+ filled: {
134
+ base: string;
135
+ };
136
+ text: {
137
+ base: string;
138
+ };
139
+ };
140
+ color: {
141
+ primary: {
142
+ base: string;
143
+ };
144
+ success: {
145
+ base: string;
146
+ };
147
+ warning: {
148
+ base: string;
149
+ };
150
+ danger: {
151
+ base: string;
152
+ };
153
+ };
154
+ }, {
155
+ base: string;
156
+ icon: string;
157
+ }, undefined, unknown, unknown, undefined>>;
158
+ type ButtonVariants = VariantProps<typeof buttonStyles>;
159
+ export interface ButtonProps extends ComponentProps<typeof KButton>, ButtonVariants {
160
+ loading?: boolean;
161
+ leftIcon?: JSX.Element;
162
+ rightIcon?: JSX.Element;
163
+ }
164
+ export declare const Button: (props: ButtonProps) => JSX.Element;
165
+ export {};
@@ -0,0 +1,6 @@
1
+ import { Checkbox as KCheckbox } from '@kobalte/core/checkbox';
2
+ import { ComponentProps, JSX } from 'solid-js';
3
+ export interface CheckboxProps extends ComponentProps<typeof KCheckbox> {
4
+ label?: JSX.Element;
5
+ }
6
+ export declare const Checkbox: (props: CheckboxProps) => JSX.Element;
@@ -0,0 +1,8 @@
1
+ import { Collapsible as KCollapsible } from '@kobalte/core/collapsible';
2
+ import { JSX, ComponentProps } from 'solid-js';
3
+ interface CollapsibleProps extends ComponentProps<typeof KCollapsible> {
4
+ title: JSX.Element;
5
+ children: JSX.Element;
6
+ }
7
+ export declare const Collapsible: (props: CollapsibleProps) => JSX.Element;
8
+ export {};
@@ -0,0 +1,5 @@
1
+ import { ColorArea as KColorArea } from '@kobalte/core/color-area';
2
+ import { ComponentProps } from 'solid-js';
3
+ export interface ColorAreaProps extends ComponentProps<typeof KColorArea> {
4
+ }
5
+ export declare const ColorArea: (props: ColorAreaProps) => import("solid-js").JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { ColorChannelField as KColorChannelField } from '@kobalte/core/color-channel-field';
2
+ import { ComponentProps } from 'solid-js';
3
+ export interface ColorChannelFieldProps extends ComponentProps<typeof KColorChannelField> {
4
+ label?: string;
5
+ }
6
+ export declare const ColorChannelField: (props: ColorChannelFieldProps) => import("solid-js").JSX.Element;
@@ -0,0 +1,8 @@
1
+ import { ColorField as KColorField } from '@kobalte/core/color-field';
2
+ import { ComponentProps } from 'solid-js';
3
+ export interface ColorFieldProps extends ComponentProps<typeof KColorField> {
4
+ label?: string;
5
+ desc?: string;
6
+ error?: string;
7
+ }
8
+ export declare const ColorField: (props: ColorFieldProps) => import("solid-js").JSX.Element;
@@ -0,0 +1,7 @@
1
+ import { ColorSlider as KColorSlider } from '@kobalte/core/color-slider';
2
+ import { ComponentProps } from 'solid-js';
3
+ export interface ColorSliderProps extends ComponentProps<typeof KColorSlider> {
4
+ label?: string;
5
+ showValue?: boolean;
6
+ }
7
+ export declare const ColorSlider: (props: ColorSliderProps) => import("solid-js").JSX.Element;
@@ -0,0 +1,5 @@
1
+ import { ColorSwatch as KColorSwatch } from '@kobalte/core/color-swatch';
2
+ import { ComponentProps } from 'solid-js';
3
+ export interface ColorSwatchProps extends ComponentProps<typeof KColorSwatch> {
4
+ }
5
+ export declare const ColorSwatch: (props: ColorSwatchProps) => import("solid-js").JSX.Element;
@@ -0,0 +1,6 @@
1
+ import { ColorWheel as KColorWheel } from '@kobalte/core/color-wheel';
2
+ import { ComponentProps } from 'solid-js';
3
+ export interface ColorWheelProps extends ComponentProps<typeof KColorWheel> {
4
+ size?: number;
5
+ }
6
+ export declare const ColorWheel: (props: ColorWheelProps) => import("solid-js").JSX.Element;
@@ -0,0 +1,11 @@
1
+ import { Combobox as KCombobox } from '@kobalte/core/combobox';
2
+ import { ComponentProps } from 'solid-js';
3
+ export type ComboboxProps<T> = ComponentProps<typeof KCombobox<T>> & {
4
+ label?: string;
5
+ placeholder?: string;
6
+ class?: string;
7
+ };
8
+ export declare const Combobox: <T extends string | object>(props: ComboboxProps<T>) => import("solid-js").JSX.Element;
9
+ export declare const ComboboxItem: (props: {
10
+ item: any;
11
+ }) => import("solid-js").JSX.Element;
@@ -0,0 +1,15 @@
1
+ import { JSX } from 'solid-js';
2
+ export type ContextMenuItemConfig = {
3
+ label: string;
4
+ onClick?: () => void;
5
+ disabled?: boolean;
6
+ separator?: boolean;
7
+ children?: ContextMenuItemConfig[];
8
+ };
9
+ interface UnifiedContextMenuProps {
10
+ items: ContextMenuItemConfig[];
11
+ children: JSX.Element;
12
+ class?: string;
13
+ }
14
+ export declare const ContextMenu: (props: UnifiedContextMenuProps) => JSX.Element;
15
+ export {};
@@ -0,0 +1,13 @@
1
+ import { JSX } from 'solid-js';
2
+ interface DialogProps {
3
+ open?: boolean;
4
+ onOpenChange?: (open: boolean) => void;
5
+ trigger?: JSX.Element;
6
+ title: string;
7
+ description?: string;
8
+ children: JSX.Element;
9
+ footer?: JSX.Element;
10
+ class?: string;
11
+ }
12
+ export declare const Dialog: (props: DialogProps) => JSX.Element;
13
+ export {};
@@ -0,0 +1,16 @@
1
+ import { JSX } from 'solid-js';
2
+ export type DropdownItemConfig = {
3
+ label: string;
4
+ onClick?: () => void;
5
+ disabled?: boolean;
6
+ separator?: boolean;
7
+ children?: DropdownItemConfig[];
8
+ };
9
+ interface DropdownMenuProps {
10
+ trigger: JSX.Element;
11
+ items: DropdownItemConfig[];
12
+ placement?: "bottom" | "bottom-start" | "bottom-end" | "top" | "left" | "right";
13
+ class?: string;
14
+ }
15
+ export declare const DropdownMenu: (props: DropdownMenuProps) => JSX.Element;
16
+ export {};
@@ -0,0 +1,71 @@
1
+ import { TextField as KTextField } from '@kobalte/core/text-field';
2
+ import { ComponentProps } from 'solid-js';
3
+ import { VariantProps } from 'tailwind-variants';
4
+ declare const fileFieldStyles: import('tailwind-variants').TVReturnType<{
5
+ validationState: {
6
+ valid: {};
7
+ invalid: {
8
+ dropzone: string;
9
+ };
10
+ };
11
+ isDisabled: {
12
+ true: {
13
+ dropzone: string;
14
+ };
15
+ };
16
+ }, {
17
+ root: string;
18
+ label: string;
19
+ dropzone: string[];
20
+ icon: string;
21
+ description: string;
22
+ errorMessage: string;
23
+ }, undefined, {
24
+ validationState: {
25
+ valid: {};
26
+ invalid: {
27
+ dropzone: string;
28
+ };
29
+ };
30
+ isDisabled: {
31
+ true: {
32
+ dropzone: string;
33
+ };
34
+ };
35
+ }, {
36
+ root: string;
37
+ label: string;
38
+ dropzone: string[];
39
+ icon: string;
40
+ description: string;
41
+ errorMessage: string;
42
+ }, import('tailwind-variants').TVReturnType<{
43
+ validationState: {
44
+ valid: {};
45
+ invalid: {
46
+ dropzone: string;
47
+ };
48
+ };
49
+ isDisabled: {
50
+ true: {
51
+ dropzone: string;
52
+ };
53
+ };
54
+ }, {
55
+ root: string;
56
+ label: string;
57
+ dropzone: string[];
58
+ icon: string;
59
+ description: string;
60
+ errorMessage: string;
61
+ }, undefined, unknown, unknown, undefined>>;
62
+ type FileFieldVariants = VariantProps<typeof fileFieldStyles>;
63
+ export interface FileFieldProps extends Omit<ComponentProps<typeof KTextField>, "value" | "onChange">, FileFieldVariants {
64
+ label?: string;
65
+ description?: string;
66
+ accept?: string;
67
+ multiple?: boolean;
68
+ onChange?: (files: File[]) => void;
69
+ }
70
+ export declare const FileField: (props: FileFieldProps) => import("solid-js").JSX.Element;
71
+ export {};
@@ -0,0 +1,56 @@
1
+ import { HoverCard as KHoverCard } from '@kobalte/core/hover-card';
2
+ import { ComponentProps, JSX } from 'solid-js';
3
+ import { VariantProps } from 'tailwind-variants';
4
+ declare const hoverCardStyles: import('tailwind-variants').TVReturnType<{
5
+ size: {
6
+ sm: {
7
+ content: string;
8
+ };
9
+ md: {
10
+ content: string;
11
+ };
12
+ lg: {
13
+ content: string;
14
+ };
15
+ };
16
+ }, {
17
+ content: string[];
18
+ arrow: string;
19
+ }, undefined, {
20
+ size: {
21
+ sm: {
22
+ content: string;
23
+ };
24
+ md: {
25
+ content: string;
26
+ };
27
+ lg: {
28
+ content: string;
29
+ };
30
+ };
31
+ }, {
32
+ content: string[];
33
+ arrow: string;
34
+ }, import('tailwind-variants').TVReturnType<{
35
+ size: {
36
+ sm: {
37
+ content: string;
38
+ };
39
+ md: {
40
+ content: string;
41
+ };
42
+ lg: {
43
+ content: string;
44
+ };
45
+ };
46
+ }, {
47
+ content: string[];
48
+ arrow: string;
49
+ }, undefined, unknown, unknown, undefined>>;
50
+ type HoverCardVariants = VariantProps<typeof hoverCardStyles>;
51
+ export interface HoverCardProps extends ComponentProps<typeof KHoverCard>, HoverCardVariants {
52
+ trigger: JSX.Element;
53
+ showArrow?: boolean;
54
+ }
55
+ export declare const HoverCard: (props: HoverCardProps) => JSX.Element;
56
+ export {};