/*** * Parsed representation of a Paradox doc comment. */ export interface ParsedParadoxComment { description: string | null; isConfig: boolean; isReadme: boolean; isUsage: boolean; examples: ParsedExample[]; params: Record; returns: string | null; } interface ParsedExample { title: string | null; language: string | null; code: string; } /*** * Parses a Paradox doc comment into structured metadata. */ export declare function parseParadoxComment(rawComment: string): ParsedParadoxComment; export {};