import { Observable, OperatorFunction } from 'rxjs'; /** * Queues all incoming observable and turns each of them *hot* after the previous completes. * * The observables are emitted as soon as they become *hot*. * * @typeParam T type of both the accepted and emitted observable * @category Operator */ export declare function concurrentQueue(): OperatorFunction, Observable>; //# sourceMappingURL=concurrent-queue.d.ts.map