import { ILoggerInternalMessageFormat, ILoggerInternalMessage } from '../../types.js';
import '@lsk4/colors';

declare function detectFormat(json: any): ILoggerInternalMessageFormat | null;
declare function stringify(format: string, meta: Record<string, unknown>, ...args: any[]): any;
declare function parse(json: any): ILoggerInternalMessage;

export { detectFormat, parse, stringify };
