import type { Node } from 'ts-morph'; /*** * Reads the nearest Paradox doc comment attached to a declaration. */ export declare function getParadoxComment(node: Node | undefined): string | null; interface ParsedParadoxComment { description: string | null; isConfig: boolean; params: Record; returns: string | null; } /*** * Parses a Paradox doc comment into structured metadata. */ export declare function parseParadoxComment(rawComment: string): ParsedParadoxComment; export {};