import { useClickedOutside, useDebounce, useIsMounted, useMountedState, useLocalStorage } from "./hooks"; export { useClickedOutside, useDebounce, useIsMounted, useMountedState, useLocalStorage, }; export declare type Network = "polkadot" | "kusama" | "westend" | "rococo" | "statemine" | "statemint" | "westmint"; export interface NetworkDetails { id: string; name: string; color: string; icon?: string; secColor: string; type?: Network; } export declare type Size = "xs" | "sm" | "base" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl" | "8xl" | "9xl"; export declare const defaultChains: Network[]; export declare const createSecColor: (color: string, amount: number) => string; export declare const getChain: (a: string) => NetworkDetails | undefined; export declare const getChains: () => Map; export declare const unknownNetwork: (name: string) => NetworkDetails;