import type { ParadoxConfig } from '../config/types.js'; import type { AnalysisResult } from './types.js'; /*** * Analyzes a package and returns the complete documentation input model. */ export declare function analyze(config: ParadoxConfig, runtime: { packageRoot: string; configFilePath?: string; }): Promise;