import type { TonClient, Transaction } from '@ton/ton'; import type { LogFilter } from '../chain.ts'; import type { ChainTransaction } from '../types.ts'; /** * Internal method to get transactions for an address with pagination. * @param opts - Log filter options. * @returns Async generator of TON transactions. */ export declare function streamTransactionsForAddress(opts: Omit & { pollInterval?: number; }, ctx: { provider: TonClient; getTransaction: (tx: Transaction) => Promise; }): AsyncGenerator; //# sourceMappingURL=logs.d.ts.map