import { ThrottlerStorageOptions } from './throttler-storage-options.interface'; import { ThrottlerStorageRecord } from './throttler-storage-record.interface'; export interface ThrottlerStorage { storage: Record; increment(key: string, ttl: number): Promise; } export declare const ThrottlerStorage: unique symbol;