import type { RenderDocumentsManyQuery, DbOperation } from './types.ts'; import type { functionContext } from '../fn/functionContext.ts'; import { render } from '../render/index.ts'; /** * Get multiple pages with rendering * Fetches documents and renders them all with the provided function context * * @param client Database client * @param options Query options for filtering, sorting, and pagination * @param requestQuery Optional request query parameters * @param fn Function context factory for nested rendering * @returns Array of rendered documents */ export declare const getPages: DbOperation<[ RenderDocumentsManyQuery | undefined, Record | undefined, typeof functionContext ], Awaited>[]>; //# sourceMappingURL=getPages.d.ts.map