import { SWRConfiguration, SWRResponse } from 'swr'; import { type ChainBalanceData, CosmosChainData, SkipSupportedAsset } from '@leapwallet/elements-core'; export type UseCosmosBalancesReturnType = SWRResponse; /** * Get token balances for a cosmos based blockchain wallet address */ export declare const useCosmosBalances: (address: string, chain: CosmosChainData | undefined, enabled?: boolean, cw20Assets?: SkipSupportedAsset[] | undefined, swrConfig?: SWRConfiguration | undefined, isTestnet?: boolean) => UseCosmosBalancesReturnType; /** * React hook to revalidate token balances */ export declare const useRevalidateBalances: () => VoidFunction;