import * as winston from 'winston';
import 'winston-daily-rotate-file';
export declare const winstonLogger: winston.Logger;
export declare const httpLogger: winston.Logger;
export declare const LogLevel: {
    readonly error: "error";
    readonly warn: "warn";
    readonly info: "info";
    readonly http: "http";
    readonly verbose: "verbose";
    readonly debug: "debug";
    readonly silly: "silly";
};
export declare function createLogger(context: string): {
    error: (message: string, trace?: string) => void;
    warn: (message: string) => void;
    log: (message: string) => void;
    debug: (message: string) => void;
    verbose: (message: string) => void;
};
export declare function logHttp(message: string, meta?: any): void;
