export declare class Throttle {
    private throttleIntervalMs;
    private nextThrottleTime;
    constructor(throttleIntervalMs: number, nextThrottleTime?: number);
    get isThrottling(): boolean;
}
