import type { Formatter } from "./formatter.interface.js";
/**
 * JSON formatter for the logger
 */
export declare class JsonFormatter implements Formatter {
    /**
     * Format a log message as JSON
     */
    format(level: string, message: string, timestamp: string, context: Record<string, any>): string;
}
//# sourceMappingURL=json.formatter.d.ts.map