export interface AnalysisReadmeUsage { title: string | null; description: string | null; language: string; code: string; sourcePath: string; } /*** * Collects README usage examples from configured real source files. */ export declare function analyzeReadmeUsage(options: { root: string; entrypoints: readonly string[]; }): Promise;