import { Request, Response, NextFunction } from "express";
import { RateLimiterOptions } from "./config";
export declare function slidingWindowRateLimiter(options: RateLimiterOptions): (req: Request, res: Response, next: NextFunction) => void | Response<any, Record<string, any>>;
