import { Client } from '../Client';
export interface GetAccountHistoryResponse {
    values: any[];
}
interface GetAccountHistoryParams {
    address: string;
    seq_num: null | number;
    limit?: number;
    ascending?: boolean;
    irreversible?: boolean;
}
export declare class AccountHistory {
    private readonly client;
    constructor(client: Client);
    getAccountHistory({ address, seq_num, limit, ascending, irreversible }: GetAccountHistoryParams): Promise<GetAccountHistoryResponse>;
    private call;
}
export {};
