export declare class Logger {
    private name;
    private category;
    private id;
    constructor(name: string, category?: string);
    static getLogger(name: string, category?: string): Logger;
    static enable(): void;
    static disable(): void;
    log(...msg: any[]): void;
}
