import type { IncomingMessage, ServerResponse } from 'node:http'; import { type Options as PinoHttpOptions } from 'pino-http'; import { type CreateLoggerOptions } from './factory'; export interface CreateHttpLoggerOptions extends CreateLoggerOptions { ignoredPaths?: Array; autoLogging?: PinoHttpOptions['autoLogging']; } export declare function createHttpLogger(options?: CreateHttpLoggerOptions): import("pino-http").HttpLogger, never>; //# sourceMappingURL=http-logger.d.ts.map