import type { ArtifactRecord } from '../artifacts/types.js'; import type { KnowledgeExtractionFormat } from './types.js'; export interface KnowledgeExtractionResult { readonly extractorId: string; readonly format: KnowledgeExtractionFormat; readonly title?: string | undefined; readonly summary?: string | undefined; readonly excerpt?: string | undefined; readonly sections: readonly string[]; readonly links: readonly string[]; readonly estimatedTokens: number; readonly structure: Record; readonly metadata: Record; } export declare function extractKnowledgeArtifact(artifact: Pick, buffer: Buffer): Promise; //# sourceMappingURL=extractors.d.ts.map