import type { AnalyzedProgram } from './semantic/model.js'; import type { AnalysisComponent, AnalysisExport } from './types.js'; /*** * Extracts React components and their props from analyzed exports. */ export declare function analyzeComponents(exports: readonly AnalysisExport[], options?: { program?: AnalyzedProgram; }): AnalysisComponent[];