interface ApiLimiterOptions { errorMessage: string; redisHost: string; redisPort: number; windowMinutes?: number; max?: number; prefix?: string; } export declare function createRateApiLimiter(options: ApiLimiterOptions): ((req: any, res: any, next: any) => any) | import("express-rate-limit").RateLimitRequestHandler; export {};