import { AccountTransactionId, Transaction } from '@tonkite/core';
import { LiteApi } from '../liteapi';
import { Address } from 'ton3-core';
export declare class TransactionCursor implements AsyncIterable<Transaction> {
    private readonly api;
    private readonly account;
    private readonly offset;
    private readonly take;
    static readonly CHUNK_SIZE = 30;
    constructor(api: LiteApi, account: Address, offset: AccountTransactionId, take: number);
    [Symbol.asyncIterator](): AsyncIterator<Transaction>;
}
