export declare class Logger { env: string; title?: string; constructor(title?: string); log(err: any): void; info(err: any): void; debug(err: any): void; warn(err: any): void; error(err: any): void; }