export declare class PromiseQueue<T> {
    private queue;
    enqueue<Q>(fn: (object: T) => Promise<Q>): Promise<Q>;
    flush(object: T): void;
}
//# sourceMappingURL=promiseQueue.d.ts.map