import { SWRConfiguration } from 'swr'; import { Prettify, SupportedChain, ChainData } from '@leapwallet/elements-core'; export type SkipSupportedChainData = Prettify; /** * React hook to get a list of chains with metadata supported by Skip API */ export declare const useSkipSupportedChains: (options?: Partial<{ chainTypes: string[]; onlyTestnets: boolean; }>, config?: SWRConfiguration, enabled?: boolean) => import("swr/_internal").SWRResponse>>>; export declare const useSkipEVMChains: (options?: SWRConfiguration, enabled?: boolean, onlyTestnets?: boolean) => import("swr/_internal").SWRResponse<{ chainType: import("@leapwallet/elements-core").ChainType; baseDenom?: string | undefined; chainName: string; icon: string; pfmEnabled: boolean; logoUri: string; bech32Prefix: string; isTestnet: boolean; nativeToken?: import("@leapwallet/elements-core").NativeToken | undefined; multicallAddress?: string | undefined; lifiChainId?: string | undefined; relayChainId?: string | undefined; explorerUrl?: string | undefined; chainId: number; }[] | undefined, any, Partial>>>;