import type { IncomingMessage, ServerResponse } from "http";
import type { CacheControlOptions } from "../index";
export default function cacheControl(options?: CacheControlOptions): (req: IncomingMessage, res: ServerResponse, next: (err?: unknown) => void) => void;
