import { NextFunction, Request, Response } from "express"; /** * Middleware to add ETag support for OpenAPI JSON endpoint. * This middleware should be added before the @wesleytodd/openapi middleware * to intercept requests to /openapi.json and add conditional request support. */ export declare function openApiEtagMiddleware(req: Request, res: Response, next: NextFunction): void;