export declare const LOGGER_CONFIG = "malagu.logger";
export declare const Logger: unique symbol;
export declare type LogLevel = 'verbose' | 'debug' | 'info' | 'warn' | 'error';
export interface Logger {
    info(message: any, context?: string): void;
    error(message: any, context?: string): void;
    warn(message: any, context?: string): void;
    debug(message: any, context?: string): void;
}
//# sourceMappingURL=logger-protocol.d.ts.map