export interface AnalysisReadmeConfig { description: string | null; language: string; code: string; sourcePath: string; } /*** * Collects a README configuration example from the actual Paradox config file when its * leading Paradox comment is marked with both @config and @readme. */ export declare function analyzeReadmeConfig(options: { root: string; configFilePath: string | null; }): Promise;