/** * Static logger to use throughout the application */ export declare class Logger { private static prefix; private static logger; private constructor(); static setPrefix(prefix: string): void; static info(message: any): void; static warn(message: any): void; static error(message: any): void; }