export declare enum LogType {
    Off = 0,
    Exception = 1,
    Error = 2,
    Warning = 3,
    All = 4
}
export declare class GNDebug {
    private static _logType;
    static setLogType(logType: LogType): void;
    static log(message: any): void;
    static logException(exception: Error): void;
    static logWarning(message: any): void;
    static logError(message: any): void;
}
