export interface ChainIcon { chainId: number; name: string; svg: string; } export declare const chainIcons: Record; export declare const defaultChainIcon = "\n\t\n\t\n\t\n"; export declare const supportedChainIds: number[]; export declare function isSupportedChain(chainId: number): boolean; export declare function getChainIcon(chainId: number): string; export declare function getChainName(chainId: number): string;