import { Prettify, KadoAPIChainResponse, ChainType } from '@leapwallet/elements-core'; import { SWRConfiguration, SWRResponse } from 'swr'; export type SelectChainBaseChainData = { chainId: string; chainType: ChainType; chainName: string; logoUri: string; baseDenom?: string; }; export type KadoSupportedChain = Prettify; export type KadoChainsResult = { success: false; error: string; } | { success: true; chains: KadoSupportedChain[]; }; export type UseKadoSupportedChainsReturnType = SWRResponse; /** * React hook to get a list of cosmos chains (with metadata) supported by Kado API */ export declare const useKadoSupportedChains: (config?: SWRConfiguration, enabled?: boolean, isTestnet?: boolean) => UseKadoSupportedChainsReturnType;