export declare class Logger { static info(component: string, msg: any): void; static warn(component: string, msg: any): void; static error(component: string, msg: any): void; static get Instance(): Logger; private static instance; }