@liberfi.io/ui 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,182 @@
1
+ import { TableProps, TooltipProps } from '@heroui/react';
2
+ export { Accordion, AccordionItem, AccordionItemIndicatorProps, AccordionItemProps, AccordionProps, Alert, AlertProps, Autocomplete, AutocompleteItem, AutocompleteItemProps, AutocompleteProps, AutocompleteSection, AutocompleteSectionProps, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, Badge, BadgeProps, BreadcrumbItem, BreadcrumbItemProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonGroup, ButtonGroupProps, ButtonProps, Calendar, CalendarProps, Card, CardBody, CardFooter, CardFooterProps, CardHeader, CardProps, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, Chip, ChipProps, CircularProgress, CircularProgressProps, Code, CodeProps, DateInput, DateInputProps, DatePicker, DatePickerProps, DateRangePicker, DateRangePickerProps, Divider, DividerProps, Drawer, DrawerBody, DrawerBodyProps, DrawerContent, DrawerContentProps, DrawerFooter, DrawerFooterProps, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownItem, DropdownItemProps, DropdownMenu, DropdownMenuProps, DropdownProps, DropdownSection, DropdownSectionProps, DropdownTrigger, DropdownTriggerProps, Image, ImageProps, Input, InputOtp, InputOtpProps, InputProps, Kbd, KbdProps, Link, LinkProps, Listbox, ListboxItem, ListboxItemProps, ListboxProps, ListboxSection, ListboxSectionProps, Modal, ModalBody, ModalBodyProps, ModalContent, ModalContentProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, Navbar, NavbarBrand, NavbarBrandProps, NavbarContent, NavbarContentProps, NavbarItem, NavbarItemProps, NavbarMenu, NavbarMenuItem, NavbarMenuItemProps, NavbarMenuProps, NavbarMenuToggle, NavbarMenuToggleProps, NavbarProps, NumberInput, NumberInputProps, Pagination, PaginationCursor, PaginationCursorProps, PaginationItem, PaginationItemProps, PaginationProps, Popover, PopoverContent, PopoverContentProps, PopoverProps, PopoverTrigger, PopoverTriggerProps, Progress, ProgressProps, Radio, RadioGroup, RadioGroupProps, RadioProps, RangeCalendar, RangeCalendarProps, ScrollShadow, ScrollShadowProps, Select, SelectItem, SelectItemProps, SelectProps, SelectSection, SelectSectionProps, Skeleton, SkeletonProps, Slider, SliderProps, Snippet, SnippetProps, Spacer, SpacerProps, Spinner, SpinnerProps, Switch, SwitchProps, Tab, TabItemProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableColumn, TableColumnProps, TableHeader, TableHeaderProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAreaProps, Textarea, TimeInput, TimeInputProps, Tooltip, TooltipProps, UseDisclosureProps, useDisclosure } from '@heroui/react';
3
+ import { ComponentType, PropsWithChildren, SVGProps } from 'react';
4
+ import * as react_jsx_runtime from 'react/jsx-runtime';
5
+ import { ToasterProps } from 'react-hot-toast';
6
+ export { ToastOptions, Toaster, ToasterProps, toast } from 'react-hot-toast';
7
+ export { clsx } from 'clsx';
8
+
9
+ declare const StyledTable: ComponentType<TableProps & {
10
+ variant?: "default";
11
+ }>;
12
+
13
+ declare function StyledToaster(props: ToasterProps): react_jsx_runtime.JSX.Element;
14
+ declare namespace StyledToaster {
15
+ var displayName: string;
16
+ }
17
+
18
+ declare const StyledTooltip: ComponentType<TooltipProps & {
19
+ variant?: "default";
20
+ layout?: "xs" | "sm" | "md" | "lg";
21
+ }>;
22
+
23
+ type SortableProps = PropsWithChildren<{
24
+ /** current sort direction */
25
+ sort?: "asc" | "desc";
26
+ /** callback function when sort direction changes */
27
+ onSortChange?: (sort?: "asc" | "desc") => void | Promise<void>;
28
+ }>;
29
+ declare function Sortable({ sort, onSortChange, children }: SortableProps): react_jsx_runtime.JSX.Element;
30
+
31
+ declare function useCopyToClipboard(): (text: string, toastMessage?: string) => void;
32
+
33
+ declare function useScreen(): {
34
+ isMobile: boolean;
35
+ isDesktop: boolean;
36
+ };
37
+
38
+ declare function useMediaQuery(query: string): boolean;
39
+
40
+ /**
41
+ * observe the element and call the callback when the element is changed
42
+ * */
43
+ declare function useObserverElement<T extends HTMLElement>(element: T | null, callback: (entry: ResizeObserverEntry) => void): void;
44
+
45
+ declare function BundlesIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
46
+
47
+ declare function CameraIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
48
+
49
+ declare function CheckIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
50
+
51
+ declare function ChevronDownIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
52
+
53
+ declare function ChevronLeftIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
54
+
55
+ declare function ChevronRightIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
56
+
57
+ declare function ChevronUpIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
58
+
59
+ declare function CookIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
60
+
61
+ declare function CoinsIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
62
+
63
+ declare function CopyIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
64
+
65
+ declare function CrownIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
66
+
67
+ declare function DiscordIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
68
+
69
+ declare function EditIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
70
+
71
+ declare function EmptyIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
72
+
73
+ declare function ExclamationIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
74
+
75
+ declare function FAQIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
76
+
77
+ declare function GiftIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
78
+
79
+ declare function HomeIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
80
+
81
+ declare function InfoIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
82
+
83
+ declare function KlineAreaIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
84
+
85
+ declare function KlineBarsIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
86
+
87
+ declare function KlineBaseLineIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
88
+
89
+ declare function KlineCandlesIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
90
+
91
+ declare function KlineColumnsIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
92
+
93
+ declare function KlineHelkinAshiIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
94
+
95
+ declare function KlineHighLowIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
96
+
97
+ declare function KlineHollowCandlesIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
98
+
99
+ declare function KlineLineIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
100
+
101
+ declare function LightningIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
102
+
103
+ declare function MenuIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
104
+
105
+ declare function PauseIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
106
+
107
+ declare function PeopleIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
108
+
109
+ declare function PrivacyPolicyIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
110
+
111
+ declare function PulseIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
112
+
113
+ declare function RatIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
114
+
115
+ declare function RocketIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
116
+
117
+ declare function SearchIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
118
+
119
+ declare function SettingsIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
120
+
121
+ declare function ShieldIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
122
+
123
+ declare function ShieldOffIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
124
+
125
+ declare function ShieldPlusIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
126
+
127
+ declare function SignInIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
128
+
129
+ declare function SignOutIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
130
+
131
+ declare function SniperIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
132
+
133
+ declare function SlippageIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
134
+
135
+ declare function SupportIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
136
+
137
+ declare function TelegramIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
138
+
139
+ declare function TermsOfServiceIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
140
+
141
+ declare function TradeIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
142
+
143
+ declare function TranslateIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
144
+
145
+ declare function TriangleDownIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
146
+
147
+ declare function TriangleUpIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
148
+
149
+ declare function TwitterIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
150
+
151
+ declare function UserGuideIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
152
+
153
+ declare function UserIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
154
+
155
+ declare function UserWithStarBadgeIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
156
+
157
+ declare function VerifiedIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
158
+
159
+ declare function WalletIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
160
+
161
+ declare function WebsiteIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
162
+
163
+ declare function XCloseIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
164
+
165
+ declare function ZapFastIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
166
+
167
+ declare global {
168
+ interface SvgIconProps extends SVGProps<SVGSVGElement> {
169
+ }
170
+ type SvgIcon = React.FC<SvgIconProps>;
171
+ }
172
+
173
+ declare global {
174
+ interface Window {
175
+ __LIBERFI_VERSION__?: {
176
+ [key: string]: string;
177
+ };
178
+ }
179
+ }
180
+ declare const _default: "0.1.0";
181
+
182
+ export { BundlesIcon, CameraIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CoinsIcon, CookIcon, CopyIcon, CrownIcon, DiscordIcon, EditIcon, EmptyIcon, ExclamationIcon, FAQIcon, GiftIcon, HomeIcon, InfoIcon, KlineAreaIcon, KlineBarsIcon, KlineBaseLineIcon, KlineCandlesIcon, KlineColumnsIcon, KlineHelkinAshiIcon, KlineHighLowIcon, KlineHollowCandlesIcon, KlineLineIcon, LightningIcon, MenuIcon, PauseIcon, PeopleIcon, PrivacyPolicyIcon, PulseIcon, RatIcon, RocketIcon, SearchIcon, SettingsIcon, ShieldIcon, ShieldOffIcon, ShieldPlusIcon, SignInIcon, SignOutIcon, SlippageIcon, SniperIcon, Sortable, type SortableProps, StyledTable, StyledToaster, StyledTooltip, SupportIcon, TelegramIcon, TermsOfServiceIcon, TradeIcon, TranslateIcon, TriangleDownIcon, TriangleUpIcon, TwitterIcon, UserGuideIcon, UserIcon, UserWithStarBadgeIcon, VerifiedIcon, WalletIcon, WebsiteIcon, XCloseIcon, ZapFastIcon, useCopyToClipboard, useMediaQuery, useObserverElement, useScreen, _default as version };
@@ -0,0 +1,182 @@
1
+ import { TableProps, TooltipProps } from '@heroui/react';
2
+ export { Accordion, AccordionItem, AccordionItemIndicatorProps, AccordionItemProps, AccordionProps, Alert, AlertProps, Autocomplete, AutocompleteItem, AutocompleteItemProps, AutocompleteProps, AutocompleteSection, AutocompleteSectionProps, Avatar, AvatarGroup, AvatarGroupProps, AvatarProps, Badge, BadgeProps, BreadcrumbItem, BreadcrumbItemProps, Breadcrumbs, BreadcrumbsProps, Button, ButtonGroup, ButtonGroupProps, ButtonProps, Calendar, CalendarProps, Card, CardBody, CardFooter, CardFooterProps, CardHeader, CardProps, Checkbox, CheckboxGroup, CheckboxGroupProps, CheckboxProps, Chip, ChipProps, CircularProgress, CircularProgressProps, Code, CodeProps, DateInput, DateInputProps, DatePicker, DatePickerProps, DateRangePicker, DateRangePickerProps, Divider, DividerProps, Drawer, DrawerBody, DrawerBodyProps, DrawerContent, DrawerContentProps, DrawerFooter, DrawerFooterProps, DrawerHeader, DrawerHeaderProps, DrawerProps, Dropdown, DropdownItem, DropdownItemProps, DropdownMenu, DropdownMenuProps, DropdownProps, DropdownSection, DropdownSectionProps, DropdownTrigger, DropdownTriggerProps, Image, ImageProps, Input, InputOtp, InputOtpProps, InputProps, Kbd, KbdProps, Link, LinkProps, Listbox, ListboxItem, ListboxItemProps, ListboxProps, ListboxSection, ListboxSectionProps, Modal, ModalBody, ModalBodyProps, ModalContent, ModalContentProps, ModalFooter, ModalFooterProps, ModalHeader, ModalHeaderProps, ModalProps, Navbar, NavbarBrand, NavbarBrandProps, NavbarContent, NavbarContentProps, NavbarItem, NavbarItemProps, NavbarMenu, NavbarMenuItem, NavbarMenuItemProps, NavbarMenuProps, NavbarMenuToggle, NavbarMenuToggleProps, NavbarProps, NumberInput, NumberInputProps, Pagination, PaginationCursor, PaginationCursorProps, PaginationItem, PaginationItemProps, PaginationProps, Popover, PopoverContent, PopoverContentProps, PopoverProps, PopoverTrigger, PopoverTriggerProps, Progress, ProgressProps, Radio, RadioGroup, RadioGroupProps, RadioProps, RangeCalendar, RangeCalendarProps, ScrollShadow, ScrollShadowProps, Select, SelectItem, SelectItemProps, SelectProps, SelectSection, SelectSectionProps, Skeleton, SkeletonProps, Slider, SliderProps, Snippet, SnippetProps, Spacer, SpacerProps, Spinner, SpinnerProps, Switch, SwitchProps, Tab, TabItemProps, Table, TableBody, TableBodyProps, TableCell, TableCellProps, TableColumn, TableColumnProps, TableHeader, TableHeaderProps, TableProps, TableRow, TableRowProps, Tabs, TabsProps, TextAreaProps, Textarea, TimeInput, TimeInputProps, Tooltip, TooltipProps, UseDisclosureProps, useDisclosure } from '@heroui/react';
3
+ import { ComponentType, PropsWithChildren, SVGProps } from 'react';
4
+ import * as react_jsx_runtime from 'react/jsx-runtime';
5
+ import { ToasterProps } from 'react-hot-toast';
6
+ export { ToastOptions, Toaster, ToasterProps, toast } from 'react-hot-toast';
7
+ export { clsx } from 'clsx';
8
+
9
+ declare const StyledTable: ComponentType<TableProps & {
10
+ variant?: "default";
11
+ }>;
12
+
13
+ declare function StyledToaster(props: ToasterProps): react_jsx_runtime.JSX.Element;
14
+ declare namespace StyledToaster {
15
+ var displayName: string;
16
+ }
17
+
18
+ declare const StyledTooltip: ComponentType<TooltipProps & {
19
+ variant?: "default";
20
+ layout?: "xs" | "sm" | "md" | "lg";
21
+ }>;
22
+
23
+ type SortableProps = PropsWithChildren<{
24
+ /** current sort direction */
25
+ sort?: "asc" | "desc";
26
+ /** callback function when sort direction changes */
27
+ onSortChange?: (sort?: "asc" | "desc") => void | Promise<void>;
28
+ }>;
29
+ declare function Sortable({ sort, onSortChange, children }: SortableProps): react_jsx_runtime.JSX.Element;
30
+
31
+ declare function useCopyToClipboard(): (text: string, toastMessage?: string) => void;
32
+
33
+ declare function useScreen(): {
34
+ isMobile: boolean;
35
+ isDesktop: boolean;
36
+ };
37
+
38
+ declare function useMediaQuery(query: string): boolean;
39
+
40
+ /**
41
+ * observe the element and call the callback when the element is changed
42
+ * */
43
+ declare function useObserverElement<T extends HTMLElement>(element: T | null, callback: (entry: ResizeObserverEntry) => void): void;
44
+
45
+ declare function BundlesIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
46
+
47
+ declare function CameraIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
48
+
49
+ declare function CheckIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
50
+
51
+ declare function ChevronDownIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
52
+
53
+ declare function ChevronLeftIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
54
+
55
+ declare function ChevronRightIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
56
+
57
+ declare function ChevronUpIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
58
+
59
+ declare function CookIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
60
+
61
+ declare function CoinsIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
62
+
63
+ declare function CopyIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
64
+
65
+ declare function CrownIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
66
+
67
+ declare function DiscordIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
68
+
69
+ declare function EditIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
70
+
71
+ declare function EmptyIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
72
+
73
+ declare function ExclamationIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
74
+
75
+ declare function FAQIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
76
+
77
+ declare function GiftIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
78
+
79
+ declare function HomeIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
80
+
81
+ declare function InfoIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
82
+
83
+ declare function KlineAreaIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
84
+
85
+ declare function KlineBarsIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
86
+
87
+ declare function KlineBaseLineIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
88
+
89
+ declare function KlineCandlesIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
90
+
91
+ declare function KlineColumnsIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
92
+
93
+ declare function KlineHelkinAshiIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
94
+
95
+ declare function KlineHighLowIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
96
+
97
+ declare function KlineHollowCandlesIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
98
+
99
+ declare function KlineLineIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
100
+
101
+ declare function LightningIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
102
+
103
+ declare function MenuIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
104
+
105
+ declare function PauseIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
106
+
107
+ declare function PeopleIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
108
+
109
+ declare function PrivacyPolicyIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
110
+
111
+ declare function PulseIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
112
+
113
+ declare function RatIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
114
+
115
+ declare function RocketIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
116
+
117
+ declare function SearchIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
118
+
119
+ declare function SettingsIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
120
+
121
+ declare function ShieldIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
122
+
123
+ declare function ShieldOffIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
124
+
125
+ declare function ShieldPlusIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
126
+
127
+ declare function SignInIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
128
+
129
+ declare function SignOutIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
130
+
131
+ declare function SniperIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
132
+
133
+ declare function SlippageIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
134
+
135
+ declare function SupportIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
136
+
137
+ declare function TelegramIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
138
+
139
+ declare function TermsOfServiceIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
140
+
141
+ declare function TradeIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
142
+
143
+ declare function TranslateIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
144
+
145
+ declare function TriangleDownIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
146
+
147
+ declare function TriangleUpIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
148
+
149
+ declare function TwitterIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
150
+
151
+ declare function UserGuideIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
152
+
153
+ declare function UserIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
154
+
155
+ declare function UserWithStarBadgeIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
156
+
157
+ declare function VerifiedIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
158
+
159
+ declare function WalletIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
160
+
161
+ declare function WebsiteIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
162
+
163
+ declare function XCloseIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
164
+
165
+ declare function ZapFastIcon(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
166
+
167
+ declare global {
168
+ interface SvgIconProps extends SVGProps<SVGSVGElement> {
169
+ }
170
+ type SvgIcon = React.FC<SvgIconProps>;
171
+ }
172
+
173
+ declare global {
174
+ interface Window {
175
+ __LIBERFI_VERSION__?: {
176
+ [key: string]: string;
177
+ };
178
+ }
179
+ }
180
+ declare const _default: "0.1.0";
181
+
182
+ export { BundlesIcon, CameraIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CoinsIcon, CookIcon, CopyIcon, CrownIcon, DiscordIcon, EditIcon, EmptyIcon, ExclamationIcon, FAQIcon, GiftIcon, HomeIcon, InfoIcon, KlineAreaIcon, KlineBarsIcon, KlineBaseLineIcon, KlineCandlesIcon, KlineColumnsIcon, KlineHelkinAshiIcon, KlineHighLowIcon, KlineHollowCandlesIcon, KlineLineIcon, LightningIcon, MenuIcon, PauseIcon, PeopleIcon, PrivacyPolicyIcon, PulseIcon, RatIcon, RocketIcon, SearchIcon, SettingsIcon, ShieldIcon, ShieldOffIcon, ShieldPlusIcon, SignInIcon, SignOutIcon, SlippageIcon, SniperIcon, Sortable, type SortableProps, StyledTable, StyledToaster, StyledTooltip, SupportIcon, TelegramIcon, TermsOfServiceIcon, TradeIcon, TranslateIcon, TriangleDownIcon, TriangleUpIcon, TwitterIcon, UserGuideIcon, UserIcon, UserWithStarBadgeIcon, VerifiedIcon, WalletIcon, WebsiteIcon, XCloseIcon, ZapFastIcon, useCopyToClipboard, useMediaQuery, useObserverElement, useScreen, _default as version };