import type { LogObj } from '../../logger.h'; export declare const formatError: (error: Error | string) => { body: string; code: any; name: string; message: string; stack?: string; }; interface JsonLog { message: string; args?: unknown[]; error?: ReturnType; [key: string]: unknown; } export declare const formatJson: (logObj: LogObj) => JsonLog; export {}; //# sourceMappingURL=formatJson.d.ts.map