import type { NextFunction, Request, Response } from 'express'; import type { MetricsGatherer } from '../../metrics-gatherer'; export declare const collectAPIMetrics: (metrics: MetricsGatherer) => ((req: Request, res: Response, next: NextFunction) => void);