import { FormatterPlugin, PluginContext, AnalysisResult, OutputSection } from '../../types'; export declare class JsonFormatter implements FormatterPlugin { readonly name = "json-formatter"; readonly version = "1.0.0"; readonly description = "Formats analysis results as structured JSON"; readonly outputFormat: "json"; private logger; initialize(context: PluginContext): Promise; format(result: AnalysisResult, sections: OutputSection[]): Promise; } //# sourceMappingURL=json-formatter.d.ts.map