/** * File marker interpolation and MDX escaping utilities. */ /** Escape curly braces so MDX doesn't treat them as JSX expressions. */ export declare function escapeMdx(text: string): string; /** * Expand `{{file:path.ts}}` markers in content with fenced code blocks. * * Supported forms: * - `{{file:path.ts}}` — full file * - `{{file:path.ts:5-12}}` — lines 5–12 (1-based, inclusive) * - `{{file:path.ts|title=custom.ts}}` — override the code block title * - `{{file:path.ts:5-12|title=custom.ts}}` — both */ export declare function expandFileMarkers(content: string, examplesDir: string): string; //# sourceMappingURL=docs-file-markers.d.ts.map