import { useQuery, type DefaultError, type QueryKey } from '@tanstack/react-query'; type QueryType = typeof useQuery<{ balance: bigint; } | undefined, DefaultError, { balance: bigint; } | undefined, QueryKey>; type QueryOptions = Parameters['0']; /** * Fetches a wallet's native TON balance (in nanotons) from the chain's * configured JSON-RPC endpoint. TON launches with native $TON only, so this * does not handle Jettons. */ declare const _default: (address?: string, rpcUrl?: string, queryOptions?: Partial) => import("@tanstack/react-query").UseQueryResult<{ balance: bigint; } | undefined, Error> & { balance: bigint | undefined; queryKey: (string | undefined)[]; }; export default _default; //# sourceMappingURL=useTonBalance.d.ts.map