/** * JSON Reporter for scan results */ import type { ScanResult } from '../types/scan.js'; export declare class JSONReporter { /** * Generate a JSON report from scan results */ generate(result: ScanResult, outputPath: string): Promise; }