/** * Conversation Import Engine — parse external conversation exports into observations. */ import type { Pipeline } from './pipeline.js'; import type { ConversationFormat } from './conversation-parsers/auto-detect.js'; export interface ImportResult { imported: number; skipped: number; format: string; errors: string[]; } /** * Import conversations from a string content. */ export declare function importConversations(content: string, pipeline: Pipeline, opts?: { format?: ConversationFormat; filename?: string; }): Promise; //# sourceMappingURL=conversation-import.d.ts.map