declare type LoggerType = (...data: any[]) => void; export declare class Logger { static log: LoggerType; static error: LoggerType; static setLog(log: LoggerType): void; static setError(error: LoggerType): void; } export {};