import { ObservableInputTuple, OperatorFunction, Cons } from '../types'; /** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */ export declare function zip(otherInputs: [...ObservableInputTuple]): OperatorFunction>; /** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */ export declare function zip(otherInputsAndProject: [...ObservableInputTuple], project: (...values: Cons) => R): OperatorFunction; /** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */ export declare function zip(...otherInputs: [...ObservableInputTuple]): OperatorFunction>; /** @deprecated Replaced with {@link zipWith}. Will be removed in v8. */ export declare function zip(...otherInputsAndProject: [...ObservableInputTuple, (...values: Cons) => R]): OperatorFunction; //# sourceMappingURL=zip.d.ts.map