import { IDocumentAPI } from '../interface/document'; export declare class DocumentImpl implements IDocumentAPI { create(knowledgeId: string, documentData: Record): Promise; update(documentId: string, updateData: Record): Promise; delete(documentId: string): Promise; info(documentId: string): Promise; list(knowledgeId: string, params?: Record): Promise; add(knowledgeId: string, documentData: Record): Promise; updateMeta(documentId: string, metaUpdateData: Record): Promise; }