import { OperatorFunction, ObservableInput } from '../types'; /** * Collects all observable inner sources from the source, once the source completes, * it will subscribe to all inner sources, combining their values by index and emitting * them. * * @see {@link zipWith} * @see {@link zip} */ export declare function zipAll(): OperatorFunction, T[]>; export declare function zipAll(): OperatorFunction; export declare function zipAll(project: (...values: T[]) => R): OperatorFunction, R>; export declare function zipAll(project: (...values: Array) => R): OperatorFunction; //# sourceMappingURL=zipAll.d.ts.map