export declare const LOGS_PATH = "./logs";
export declare const COMBINED_LOGS = "combined.log";
export declare const TIMESTAMP_FORMAT = "DD-MM-YYYY HH:mm:ss";
export declare const LEVELS_NAMES: {
    error: string;
    warning: string;
    success: string;
    info: string;
};
export declare const LEVELS: {
    [x: string]: number;
};
export declare const LEVELS_COLORS: {
    [x: string]: string;
};
