import { ObservableInput, OperatorFunction, ObservedValueOf } from '../types'; /** @deprecated Will be removed in v9. Use {@link concatMap} instead: `concatMap(() => result)` */ export declare function concatMapTo>(observable: O): OperatorFunction>; /** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */ export declare function concatMapTo>(observable: O, resultSelector: undefined): OperatorFunction>; /** @deprecated The `resultSelector` parameter will be removed in v8. Use an inner `map` instead. Details: https://rxjs.dev/deprecations/resultSelector */ export declare function concatMapTo>(observable: O, resultSelector: (outerValue: T, innerValue: ObservedValueOf, outerIndex: number, innerIndex: number) => R): OperatorFunction; //# sourceMappingURL=concatMapTo.d.ts.map