import { SyslogLevelT } from "./syslog.js"; import { KeysUppercase } from "./types.js"; export interface LogContext { message: MessageT; name?: string; level: KeysUppercase; func?: string; line?: string; col?: string; isotime?: string; location?: string; pid?: number; hostname?: string; threadid?: number; stack?: string; metadata?: unknown; label?: string; } export declare function isLogContext(value: object): value is LogContext;