export interface IngestPipelineConfig { name: string; description?: string; parsers: string[]; chunker: string; chunkConfig?: Record; outputStore?: string; embeddings?: boolean; embeddingConfig?: string; metadata?: { extractTitles: boolean; extractKeywords: boolean; includeSource: boolean; }; } export declare function createPipelineCommand(): Promise; export declare function listPipelinesCommand(): void; export declare function getPipelineCommand(name: string): void; export declare function deletePipelineCommand(name: string): Promise; export declare function showParsersCommand(): void; export declare function showChunkersCommand(): void; //# sourceMappingURL=ingest.d.ts.map