export interface RpcParams { rpcUrl?: string; } export interface AccountParams extends RpcParams { accountId: string; } export interface FTParams extends AccountParams { contractId: string; } export declare function getBalance({ accountId, rpcUrl, }: AccountParams): Promise; export declare function ftBalance({ contractId, accountId, rpcUrl, }: FTParams): Promise; export declare function ftStorageBalance({ contractId, accountId, rpcUrl, }: FTParams): Promise; //# sourceMappingURL=rpc.d.ts.map