import type { DocumentId, DocumentInstance, DbOperation } from './types.ts'; /** * Helper: Get a DocumentInstance (current or draft) by document ID * This query joins documents, routes, and document_records to build the complete instance */ export declare const getDocumentInstance: DbOperation<[DocumentId, 'current' | 'draft'], DocumentInstance | null>; //# sourceMappingURL=getDocumentInstance.d.ts.map