/** * Outline Handler * * Handles saving document outlines to the file system. */ export interface OutlineSaveResult { outlinePath: string; } /** * Handle document outline save: saves the outline as markdown to the screenshots folder */ export declare function handleSaveOutline(data: { outline: unknown[]; markdown: string; url: string; title: string; timestamp: number; }): Promise; //# sourceMappingURL=outline.d.ts.map