export declare enum LOGTYPE { DEBUG = 0, INFO = 1, WARN = 2, ERROR = 3 } export declare const log: (type: LOGTYPE, ...args: any[]) => void;