export declare class CLogger {
    static debug: boolean;
    static log(message: any, logLevel?: String): void;
    static setDebug(debug: boolean): void;
}
