import { ILoggerOptions, ILogger } from '../types/index.js';
import 'pino';
import 'winston';

declare function getLogger({ type, options }: ILoggerOptions): ILogger;

export { getLogger };
