export { RedisFailureStrategy } from '../config/enums'; export interface ThrottlerRecord { totalHits: number; timeToExpire: number; isBlocked: boolean; timeToBlockExpire: number; } export type { ExtendedThrottlerStorage as ThrottlerStorage } from '../storage/sliding-window-throttler.storage'; export type { RedisConfig, ThrottlerConfig, ThrottlerOptions } from '../config/interfaces'; export { isRedisFailureStrategy } from '../config/validation'; export declare function isThrottlerRecord(value: unknown): value is ThrottlerRecord;