interface Subsection { title: string; value: string; } interface Section { title: string; value: string; subsections: Subsection[]; } interface ReportData { title: string; value: string; sections: Section[]; } export declare const generateMarkdownReport: (reportData: ReportData) => string; export declare const downloadReportAsPDF: (reportData: ReportData) => Promise; export {};