import { AftermathApi } from "../providers/aftermathApi"; import { CoinType, CoinsToBalance } from "../../packages/coin/coinTypes"; import { SuiAddress, TransactionDigest } from "../types"; export declare class WalletApi { private readonly Provider; constructor(Provider: AftermathApi); fetchCoinBalance: (inputs: { walletAddress: SuiAddress; coin: CoinType; }) => Promise; fetchAllCoinBalances: (inputs: { walletAddress: SuiAddress; }) => Promise; fetchPastTransactions: (inputs: { walletAddress: SuiAddress; cursor?: TransactionDigest; limit?: number; }) => Promise; } //# sourceMappingURL=walletApi.d.ts.map