import { ChainBalanceData, SkipSupportedAsset } from '@leapwallet/elements-core'; /** Get the balances for the given address * * @param chainId * @param address * @param chainAssets * @returns list of asset balances for the given address */ export declare const useSkipBalances: ({ chainId, address, chainAssets }: { chainId?: string | undefined; address?: string | undefined; chainAssets: SkipSupportedAsset[]; }) => import("swr/_internal").SWRResponse>> | undefined>; /** Get the balances for the given BTC address using Blockstream * * @param chainId * @param address * @param chainAssets * @returns list of asset balances for the given address */ export declare const useBtcBalance: ({ chainId, address, chainAssets }: { chainId?: string | undefined; address?: string | undefined; chainAssets: SkipSupportedAsset[]; }) => import("swr/_internal").SWRResponse>> | undefined>;