export type LOG_LEVEL = 'debug' | 'info' | 'warning' | 'error'; export interface ILogger { debug(message: string): Promise; info(message: string): Promise; warning(message: string): Promise; error(message: string): Promise; log(message: string, logLevel: LOG_LEVEL): Promise; } //# sourceMappingURL=ILogger.d.ts.map