import type { DocumentQuery, DualDocument, RenderDocument, RenderDocumentGetOptions, DbOperation } from './types.ts'; /** * Single Doc, unlike `getDualDocument`, always returns ONE document with its associated redirects and uploads. * Returns the document, its redirects, and uploads. * Prioritizes draft version if available, otherwise returns current version. * * @param client Database client * @param query Query to find the document (by id or path) * @param options Options including includeSlot and includeTemplate to populate slot/template documents * @returns RenderDocument with merged content, redirects, and uploads */ export declare const getRenderDocument: DbOperation<[ DocumentQuery & { dualDocument?: DualDocument; }, RenderDocumentGetOptions? ], RenderDocument | null>; //# sourceMappingURL=getRenderDocument.d.ts.map