export type LogLevel = 'trace' | 'info' | 'warn' | 'error'; export type LoggerFnParams = { timestamp?: string; requestId?: string; duration?: number; query?: string | Record; values?: any[]; allSqlLines?: boolean; showRestParams?: boolean; error?: Error | string; trace?: string; warning?: string; level?: LogLevel; [key: string]: any; }; export type LoggerFn = (msg: string, params: LoggerFnParams) => void; //# sourceMappingURL=logger.d.ts.map