import type { ExtractionResult, VerificationReport } from '../types.js'; interface ReportInput { extraction: ExtractionResult; verification: VerificationReport; projectName?: string; } export declare function generateGapReport(input: ReportInput): string; export {};