import { AppServices, Configuration, Container, ContainerModule, EventHandlerSpec, Logger } from "../../interfaces"; import { LoggerOptions } from "pino"; export type LoggingModuleExports = { appLogger: Logger; }; export type LoggingConfiguration = { logger: LoggerOptions; }; export declare class LoggingContainerModule implements ContainerModule { private config; constructor(config: Configuration); getName(): string; configure(container: Container): void; getEventhandlers(): EventHandlerSpec[]; }