import type { BaseClient } from "../client/base.js"; export declare class AccountApi { private readonly client; constructor(client: BaseClient); /** * Get balance and allowance for a token */ getBalanceAllowance(tokenId: string, address: string): Promise; } export type BalanceAllowanceResponse = { balance: string; allowance: string; }; //# sourceMappingURL=account.d.ts.map