/// declare const Uik: { utils: { formatAddress: (address?: string, offset?: number) => string; formatAmount: (amount: string | number) => string; formatHumanAmount: (amount: string | number, decPlaces?: number) => string; maxDecimals: (num: string | number, decPlaces?: number, method?: "round" | "floor" | "ceil") => number; slug: (str: string) => string; }; dropConfetti: () => void; dropMoney: () => void; notify: { info: (params: string | import("./functions/notify").NewNotification) => void; success: (params: string | import("./functions/notify").NewNotification) => void; danger: (params: string | import("./functions/notify").NewNotification) => void; }; prompt: ({ type, title, message, actions }: import("./components/molecules/Prompt").Props) => void; AccountSelector: ({ isOpen, accounts, selectedAccount, selectedNetwork, onClose, onSelect, onNetworkSelect, className }: import("./components/organisms/AccountSelector/AccountSelector").Props) => JSX.Element; CopyButton: ({ value, tooltip, notification, onClick, className }: import("./components/organisms/CopyButton").Props) => JSX.Element; PoolActions: ({ onTabChange, onProvideInput, onWithdrawInput, onTradeInput, onProvide, onWithdraw, onTrade, onSwitchTokens, calcProvide, calcWithdraw, data, tab, className }: import("./components/organisms/PoolActions/PoolActions").Props) => JSX.Element; Notifications: ({ notifications, onClose }: import("./components/molecules/Notifications").Props) => JSX.Element; Alert: ({ type, text, onClose, aliveFor, className, children }: import("./components/atoms/Alert").Props) => JSX.Element; Button: ({ danger, fill, neomorph, icon, iconPosition, loader, loading, onClick, size, rounded, success, disabled, text, type, className, children }: import("./components/atoms/Button").Props) => JSX.Element; Container: ({ vertical, className, children, flow }: import("./components/atoms/Container").Props) => JSX.Element; Card: ({ title, titlePosition, condensed, head, children, className }: import("./components/atoms/Card").Props) => JSX.Element; Icon: ({ icon, className }: import("./components/atoms/Icon").Props) => JSX.Element; Loading: ({ color, size, text, className }: import("./components/atoms/Loading").Props) => JSX.Element; Text: ({ text, type, className, children }: import("./components/atoms/Text").Props) => JSX.Element; Divider: ({ text, spacing, className }: import("./components/atoms/Divider").Props) => JSX.Element; Dropdown: ({ isOpen, stayOpen, onClose, position, children, className }: import("./components/atoms/Dropdown/Dropdown").Props) => JSX.Element; DropdownItem: ({ text, icon, onClick, children, className }: import("./components/atoms/Dropdown/DropdownItem").Props) => JSX.Element; Tooltip: ({ text, position, children, delay, className }: import("./components/atoms/Tooltip").Props) => JSX.Element; Modal: ({ title, isOpen, onClose, onOpened, onClosed, children, footer, className }: import("./components/atoms/Modal").Props) => JSX.Element; Label: ({ text, children, className }: import("./components/atoms/Label").Props) => JSX.Element; Form: ({ children, className }: import("./components/atoms/Form").Props) => JSX.Element; Input: ({ value, defaultValue, type, label, placeholder, name, error, className, rows, textarea, required, readOnly, disabled, autoComplete, maxLength, min, max, onBlur, onFocus, onInput, onChange, onKeyPress, onKeyDown, onKeyUp }: import("./components/atoms/Input").Props) => JSX.Element; Toggle: ({ value, label, onText, offText, disabled, onChange, onInput, onClick, className }: import("./components/atoms/Toggle").Props) => JSX.Element; Select: ({ label, value, options, optionMap, multiple, disabled, placeholder, required, error, className }: import("./components/atoms/Select").Props) => JSX.Element; Celebrate: ({ className, type, onDestroy }: import("./components/atoms/Celebrate").Props) => JSX.Element; Avatar: ({ image, name, size, className }: import("./components/atoms/Avatar").Props) => JSX.Element; ActionButton: ({ text, icon, color, onClick, url, children, className }: import("./components/atoms/ActionButton").Props) => JSX.Element; Tabs: ({ value, options, onChange, className }: import("./components/atoms/Tabs").Props) => JSX.Element; Checkbox: ({ value, label, disabled, onClick, onChange, onInput, className }: import("./components/atoms/Checkbox").Props) => JSX.Element; Radio: ({ value, label, disabled, onClick, onSelect, className }: import("./components/atoms/Radio").Props) => JSX.Element; QRCode: ({ value, className }: import("./components/atoms/QRCode").Props) => JSX.Element; Code: ({ code, children, lang, className }: import("./components/atoms/Code").Props) => JSX.Element; Table: ({ children, className, seamless, height, pagination }: import("./components/atoms/Table/Table").Props) => JSX.Element; THead: ({ children, className }: import("./components/atoms/Table/THead").Props) => JSX.Element; TBody: ({ children, className }: import("./components/atoms/Table/TBody").Props) => JSX.Element; Tr: ({ onClick, children, className }: import("./components/atoms/Table/Tr").Props) => JSX.Element; Th: ({ align, children, width, className }: import("./components/atoms/Table/Th").Props) => JSX.Element; Td: ({ align, children, className }: import("./components/atoms/Table/Td").Props) => JSX.Element; Tag: ({ text, color, children, className }: import("./components/atoms/Tag").Props) => JSX.Element; Paginate: ({ current, count, onChange, className }: import("./components/atoms/Table/Paginate").Props) => JSX.Element; Trend: ({ type, direction, text, children, className }: import("./components/atoms/Trend").Props) => JSX.Element; ReefAmount: ({ value, className, children }: import("./components/atoms/ReefAmount").Props) => JSX.Element; Slider: ({ value, steps, helpers, stickyHelpers, tooltip, disabled, className, onChange }: import("./components/atoms/Slider").Props) => JSX.Element; FishAnimation: ({ className }: import("./components/assets/FishAnimation").Props) => JSX.Element; ReefLogo: ({ className }: import("./components/assets/ReefLogo").Props) => JSX.Element; ReefTestnetLogo: ({ className }: import("./components/assets/ReefLogo").Props) => JSX.Element; ReefIcon: ({ className }: import("./components/assets/ReefIcon").Props) => JSX.Element; Bubbles: ({ amount, delay, className }: import("./components/assets/Bubbles").Props) => JSX.Element; ReefSign: ({ className }: import("./components/assets/ReefSign").Props) => JSX.Element; }; export default Uik;