import { LoggerService } from "./LoggerService"; import { LogLevel } from "./LogLevel"; /** * LoggerOptions provides options for configuring the logger. */ export declare type LoggerOptions = { level?: LogLevel; service?: LoggerService; };