export declare class RateLimiter { private readonly timestamps; private readonly threshold; private readonly max; private readonly windowMs; constructor(options?: { threshold?: number; max?: number; windowMs?: number; }); trackCall(): void; }