import { Readable } from 'node:stream'; /** * A stream to collect pages of records and emit them as individual records */ export declare class PagedRecords extends Readable { constructor(); _read(): void; /** * Adds a page of results to the stream * @param {Array>} page - The page of results to add to the stream */ addPage(page: any): void; /** * Called when there are no more pages to add to the stream */ endStream(): void; } //# sourceMappingURL=PagedRecords.d.ts.map