import type { DependencyAnalysis } from '../analyzers/dependency-analyzer.js'; import type { ScanResult } from '../analyzers/file-scanner.js'; export interface InstallStep { title: string; command: string; } export interface InstallResult { prerequisites: string[]; installSteps: InstallStep[]; envSetupSteps?: InstallStep[]; verifyCommand?: string; } export declare function generateInstallSection(deps: DependencyAnalysis, scan: ScanResult): InstallResult; //# sourceMappingURL=install.d.ts.map