import type { InterviewResult } from '../interview/types.js'; export interface JsonReportOptions { /** Schema URL to embed in the report */ schemaUrl?: string; /** Path to the schema file for validation */ schemaPath?: string; /** Validate output against schema before writing */ validate?: boolean; } /** * Generate a JSON report of the interview. */ export declare function generateJsonReport(result: InterviewResult, options?: JsonReportOptions): string; //# sourceMappingURL=report.d.ts.map