import type { Query, Row } from '@rocicorp/zero'; type ServerWithQuery = { query: (cb: (q: any) => any) => Promise; }; export declare function createBatchQuery(server: ServerWithQuery): , Item extends Row>(buildQuery: (q: any) => Q, mapper: (items: Item[]) => Promise, { chunk, pause, stopAfter, }?: { chunk: number; pause?: number; stopAfter?: number; }) => Promise; export {}; //# sourceMappingURL=batchQuery.d.ts.map