export declare enum LogLevel { none = 0, error = 1, warning = 2, info = 3, trace = 4 } export declare class Logger { static writeconsole: boolean; static level: LogLevel; static sendmail: boolean; static enableNotifier: boolean; static errorCallbackFunction: (msg: string, code?: string) => void; static error(msg: string, code?: string, spaceous?: boolean): void; static warning(msg: string, spaceous?: boolean): void; static info(msg: string, spaceous?: boolean): void; static trace(msg: string, spaceous?: boolean): void; static success(msg: string, spaceous?: boolean): void; } //# sourceMappingURL=logger.d.ts.map