import { BTCNetworkType } from '../api/type'; /** * Fetches balance information using the specified chain ID, token, and network type. * * @param {number | undefined} chainId - The ID of the blockchain. If `chainId` is 0, `netWorkType` is a required parameter. * @param {string} [token] - The identifier of the token. * @param {BTCNetworkType} [netWorkType] - The network type, which can be "MAINNET", "TESTNET", or "SIGNET". */ declare const useBalance: ({ chainId, token, netWorkType, }: { chainId: number | undefined; token?: string; netWorkType?: BTCNetworkType; }) => import("@tanstack/query-core/build/legacy/hydration-zFr_7WN8").at<{ decimals: number; formatted: string; symbol: string; value: bigint; } | { decimals: number; formatted: string; symbol: string; value: string; }, Error>; export default useBalance;