/** * Injection tokens for rate limit plugin. */ /** * Injection token for rate limit plugin options. */ export declare const RATE_LIMIT_PLUGIN_OPTIONS: unique symbol; /** * Injection token for rate limit service. */ export declare const RATE_LIMIT_SERVICE: unique symbol; /** * Injection token for the Redis-backed rate limit store. * Kept as the primary store token for backward compatibility. */ export declare const RATE_LIMIT_STORE: unique symbol; /** * Injection token for the in-memory (per-instance) rate limit store. * Registered alongside the Redis store; the service picks per check based on * the `store` option. */ export declare const RATE_LIMIT_MEMORY_STORE: unique symbol; /** * Plugin-specific Redis driver token. * Resolves to the named client specified in plugin options. */ export declare const RATE_LIMIT_REDIS_DRIVER: unique symbol; //# sourceMappingURL=index.d.ts.map