export declare enum LoggerProvider { MODULE_OPTIONS = "LOGGER_MODULE_OPTIONS" } export interface LoggerModuleOptions { general?: GeneralLoggerOptions; local?: boolean; } export interface GeneralLoggerOptions { context?: string; timestamp?: boolean; } export interface HintTags { blockNumber?: number; error?: string; count?: number; description?: string; } export declare type Tagger = (tags?: Record | HintTags) => Record; //# sourceMappingURL=logger.types.d.ts.map