export declare class Logger { debug(message: string, context: any, object?: any): void; error(message: string, context: any, object?: any): void; warn(message: string, context: any, object?: any): void; info(message: string, context: any, object?: any): void; createLogStatement(message: any, context: any): string; constructor(); }