/** * HTML Report Generator * Creates a beautiful HTML report for migration results */ import type { ApplyResult } from '@hugeicons/migrate-core'; interface ReportOptions { projectRoot: string; style: string; dryRun: boolean; sourceLibrary?: string; pendingInstallCommand?: string; } /** * Generate HTML report for migration results */ export declare function generateHtmlReport(result: ApplyResult, options: ReportOptions): string; /** * Save HTML report to file and optionally open in browser */ export declare function saveAndOpenReport(html: string, projectRoot: string, openInBrowser?: boolean): Promise; export {}; //# sourceMappingURL=html-report.d.ts.map