/** * JSON Reporter - Generates JSON reports for programmatic consumption * Placeholder implementation - to be completed */ import type { SecurityReport, ScanResult, SecurityFinding } from '../types.js'; export declare class JsonReporter implements SecurityReport { private result; constructor(result: ScanResult); generate(): object; getSummary(): string; getFindings(): SecurityFinding[]; } //# sourceMappingURL=JsonReporter.d.ts.map