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