import type { DashboardData } from '../types'; export declare class DashboardGenerator { generateDashboard(data: DashboardData, options?: { showOpenPRs?: boolean showDetectedDependencies?: boolean showDeprecatedDependencies?: boolean bodyTemplate?: string }): { title: string, body: string }; }