export declare enum LogLevel { Verbose = "Verbose", Debug = "Debug", Info = "Info", Warning = "Warning", Error = "Error" } export declare const LogLevelOrdinal: LogLevel[]; export declare type LogPrefixComposer = (tag: string, level: LogLevel) => string; export declare type LogParam = string | number | object | any[] | Error | undefined | null;