import type { ScanResult } from '../analyzers/file-scanner.js'; import type { DependencyAnalysis } from '../analyzers/dependency-analyzer.js'; import type { CodeAnalysis } from '../analyzers/code-analyzer.js'; import type { AIProvider } from '../providers/index.js'; export interface OverviewResult { tagline: string; description: string; keyFeatures: string[]; useCases: string[]; targetAudience: string; } export declare function generateOverview(params: { scan: ScanResult; deps: DependencyAnalysis; codeAnalysis: CodeAnalysis; provider: AIProvider; existingDescription?: string; userContext?: string; }): Promise; //# sourceMappingURL=overview.d.ts.map