export declare enum LogLevels {
    error = 0,
    warn = 1,
    info = 2,
    verbose = 3,
    debug = 4,
    silly = 5
}
export declare const TracerLogFor: {
    class: "Class";
    method: "Method";
};
export declare type TracerLogFor = (typeof TracerLogFor)[keyof typeof TracerLogFor];
