/** * Document Outline Extraction * * Functions for extracting and formatting the semantic document outline. */ import type { OutlineNode, SweetlinkResponse } from '../../types.js'; /** * Extract the document outline from the page */ export declare function extractDocumentOutline(): OutlineNode[]; /** * Convert an outline to markdown format */ export declare function outlineToMarkdown(outline: OutlineNode[], indent?: number): string; /** * Handle get-outline command from CLI */ export declare function handleGetOutline(): SweetlinkResponse; //# sourceMappingURL=outline.d.ts.map