import { Reporter } from "./reporter"; export declare type ReporterFactory = (options: any) => Reporter; export declare class ReporterRegistry { private readonly registry; constructor(); register(id: string, factory: ReporterFactory): void; create(id: string, options: any): Reporter; } export declare const DEFAULT_REGISTRY: ReporterRegistry;