import { ILoggerInternalMessage } from '../../types.js'; import '@lskjs/colors'; type BunyanLevel = 10 | 20 | 30 | 40 | 50 | 60; declare const bunyanLevels: BunyanLevel[]; declare const isBunyan: (json: any) => boolean; declare const parseBunyan: (json: any) => ILoggerInternalMessage; declare const stringifyBunyan: (json: any) => string; export { bunyanLevels, isBunyan, parseBunyan, stringifyBunyan };