export interface SquidChain { chainName: string; chainId: number; chainType: string; networkName: string; rpc: string; chainIconURI: string; } /** * React hook to get the list of supported chains from the squid API */ export declare const useSquidChains: (supportedEVMChainIds?: { [chainId: number]: boolean; } | undefined, enabled?: boolean) => import("swr/_internal").SWRResponse>> | undefined>;