/** Log levels used by the logger. */ export declare enum LogLevel { QUIET = 0, ERROR = 1, WARN = 2, INFO = 3, DEBUG = 4 } /** The generic logger interface. */ export interface ILogger { error: (message: string, tags?: string[]) => void; warn: (message: string, tags?: string[]) => void; info: (message: string, tags?: string[]) => void; debug: (message: string, tags?: string[]) => void; } //# sourceMappingURL=logger-types.d.ts.map