import Redis from 'ioredis';
import { ThrottlerStorage } from '@nestjs/throttler';
export declare class ThrottlerStorageRedisService implements Omit<ThrottlerStorage, 'storage'> {
    redis: Redis.Redis;
    scanCount: number;
    constructor(redis?: Redis.Redis, scanCount?: number);
    constructor(options?: Redis.RedisOptions, scanCount?: number);
    constructor(url?: string, scanCount?: number);
    getRecord(key: string): Promise<number[]>;
    addRecord(key: string, ttl: number): Promise<void>;
}
//# sourceMappingURL=throttler-storage-redis.service.d.ts.map