import { Observable, OperatorFunction } from 'rxjs'; /** * Turns the first incoming observable *hot* and ignores any further observable * until the first completes (or fails). Once that happens the operator is ready * to accept new observables. * * The *hot* observables are emitted, the others not. * * @typeParam T type of both the accepted and emitted observable * @category Operator */ export declare function concurrentOne(): OperatorFunction, Observable>; //# sourceMappingURL=concurrent-one.d.ts.map