export declare class RequestQueue {
    private queues;
    init(key: string): void;
    add(key: string, requestFunction: () => void): void;
    has(key: string): boolean;
    drain(key: string): boolean;
    flush(key: string): void;
}
