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

type LogrusLevel = 'trace' | 'debug' | 'info' | 'warning' | 'error' | 'fatal' | 'panic';
declare const logrusLevels: LogrusLevel[];
declare const isLogrus: (json: any) => boolean;
declare const parseLogrus: (json: any) => ILoggerInternalMessage;
declare const stringifyLogrus: (json: any) => string;

export { isLogrus, logrusLevels, parseLogrus, stringifyLogrus };
