import { Collection, ObjectId as MongoObjectId } from "mongodb"; import type { CreateKnowledgeDocumentInput, KnowledgeDocument, KnowledgeDocumentDoc, KnowledgeDocumentReadyProjection, UpdateKnowledgeDocumentInput } from "./knowledgeDocuments.types"; export declare const getKnowledgeDocumentsCollection: () => Collection; export declare const createKnowledgeDocument: (input: CreateKnowledgeDocumentInput) => Promise; export declare const getKnowledgeDocumentById: (id: string) => Promise; export declare const listKnowledgeDocumentsByClientId: (clientId: string) => Promise; export declare const listReadyKnowledgeDocumentIdsByClientId: (clientId: string) => Promise; export declare const listReadyKnowledgeDocumentsByClientId: (clientId: string) => Promise; export declare const updateKnowledgeDocument: (id: string, updates: UpdateKnowledgeDocumentInput) => Promise; export declare const deleteKnowledgeDocument: (id: string) => Promise; //# sourceMappingURL=knowledgeDocuments.getters.d.ts.map