import { LoggerInterface } from './logger.interface'; import { LogOptions } from '../types/log-options'; export declare class Logger { private static instance; private static options; static configure(options: Partial): void; static overrideLogger(logger: LoggerInterface): void; static log(message: string, context?: any): void; static info(message: string, context?: any): void; static error(message: string, trace?: any, context?: any): void; static warn(message: string, context?: any): void; static debug(message: string, context?: any): void; static verbose(message: string, context?: any): void; private static shouldLog; } //# sourceMappingURL=logger.d.ts.map