/** * Pure-text transcript importer — the workaround for Loom + any other * source without API access. Reads a file (VTT, SRT, or plain text / * markdown), strips transcript markup, and runs the content through * `@onenomad/przm-cortex-pipeline-meeting` exactly as if the meeting had been fetched * by an API adapter. * * Why a dedicated command instead of the Obsidian adapter: Obsidian * files route through pipeline-doc, which chunks but doesn't extract * decisions + action items + generate a brief. Meetings deserve the * meeting pipeline. */ export interface ImportMeetingArgs { file: string; project?: string; dateIso?: string; attendees?: string[]; title?: string; source?: string; sourceUrl?: string; dryRun?: boolean; } export declare function runImportMeeting(args: readonly string[]): Promise; /** * Strip transcript markup from VTT / SRT, pass plain text through. * The goal isn't pretty-printing — it's feeding the meeting pipeline * the spoken words without timecodes confusing the extractor. */ export declare function normalizeTranscript(raw: string, ext: string): string; //# sourceMappingURL=import-meeting.d.ts.map