import { Chain } from "../types/chain.js"; import { UTXOSchema } from "../transports/types.js"; import { Account } from "../types/account.js"; import { Transport } from "../types/transport.js"; import { Client } from "../types/client.js"; //#region src/actions/getBalance.d.ts type GetBalanceParameters = { /** The address of the account. */address: string; }; type GetBalanceReturnType = bigint; declare function getBalance(client: Client, params: GetBalanceParameters): Promise; //#endregion export { GetBalanceParameters, GetBalanceReturnType, getBalance }; //# sourceMappingURL=getBalance.d.ts.map