import type Client from '../Client'; import Account, { AccountStats } from '../models/Account'; import ResourceList from '../ResourceList'; interface ListParams { cursor?: string; } export default class Accounts { private client; constructor(client: Client); fromAddress(address: string): Account; list(params?: ListParams): Promise>; listRich(): Promise>; get(address: string, params?: { maxBlock?: number; }): Promise; getStats(address: string): Promise; } export {}; //# sourceMappingURL=Accounts.d.ts.map