export interface Logger { setContext(context?: string): void; info(message: any, context?: string): void; error(message: any, context?: string): void; warn(message: any, context?: string): void; debug(message: any, context?: string): void; time(label: string): void; timeEnd(label: string, context?: string): number | undefined; } //# sourceMappingURL=logger.d.ts.map