import { ILoggerInternalMessage } from '../../types.js'; import '@lskjs/colors'; declare const lsklogLevels: string[]; declare const lsklogWebLevels: string[]; declare const isLsklog: (json: any) => boolean; declare const isLskLikelog: (json: any) => boolean; declare const isLsklogWeb: (req: any) => boolean; declare const isLsklogWebFinal: (req: any) => boolean; declare const parseLsklog: (json: any) => ILoggerInternalMessage; declare const stringifyLsklog: (json: any) => string; export { isLskLikelog, isLsklog, isLsklogWeb, isLsklogWebFinal, lsklogLevels, lsklogWebLevels, parseLsklog, stringifyLsklog };