export declare class Console { static enable: boolean; static println(type: 'error' | 'log', ...msg: any[]): void; static log(...msg: any[]): void; static error(...msg: any[]): void; }