export declare const NETWORK_NAME_TO_CHAIN_ID: Record<string, number>;
export declare function getNetworkName(chainId: string | number): string;
export declare const NETWORK_LOGO_URLS: Record<string, string>;
export declare function formatAmount(amount: string): string;
export declare const debounce: <T extends (...args: any[]) => any>(func: T, wait: number) => (...args: Parameters<T>) => void;
