import type { Reporter } from "../../core/ports.js"; import type { Result } from "../../core/types.js"; export declare class JsonReporter implements Reporter { private readonly path; constructor(path: string); emit(result: Result): Promise; }