import { AsyncIterableX } from '../../asynciterable/asynciterablex'; /** * @ignore */ export declare function combineLatestProto(this: AsyncIterableX, source2: AsyncIterable): AsyncIterableX<[T, T2]>; export declare function combineLatestProto(this: AsyncIterableX, source2: AsyncIterable, source3: AsyncIterable): AsyncIterableX<[T, T2, T3]>; export declare function combineLatestProto(this: AsyncIterableX, source2: AsyncIterable, source3: AsyncIterable, source4: AsyncIterable): AsyncIterableX<[T, T2, T3, T4]>; export declare function combineLatestProto(this: AsyncIterableX, source2: AsyncIterable, source3: AsyncIterable, source4: AsyncIterable, source5: AsyncIterable): AsyncIterableX<[T, T2, T3, T4, T5]>; export declare function combineLatestProto(this: AsyncIterableX, source2: AsyncIterable, source3: AsyncIterable, source4: AsyncIterable, source5: AsyncIterable, source6: AsyncIterable): AsyncIterableX<[T, T2, T3, T4, T5, T6]>; export declare function combineLatestProto(this: AsyncIterableX, project: (values: [T]) => R): AsyncIterableX; export declare function combineLatestProto(this: AsyncIterableX, project: (values: [T, T2]) => R, source2: AsyncIterable): AsyncIterableX; export declare function combineLatestProto(this: AsyncIterableX, project: (values: [T, T2, T3]) => R, source2: AsyncIterable, source3: AsyncIterable): AsyncIterableX; export declare function combineLatestProto(this: AsyncIterableX, project: (values: [T, T2, T3, T4]) => R, source2: AsyncIterable, source3: AsyncIterable, source4: AsyncIterable): AsyncIterableX; export declare function combineLatestProto(this: AsyncIterableX, project: (values: [T, T2, T3, T4, T5]) => R, source2: AsyncIterable, source3: AsyncIterable, source4: AsyncIterable, source5: AsyncIterable): AsyncIterableX; export declare function combineLatestProto(this: AsyncIterableX, project: (values: [T, T2, T3, T4, T5, T6]) => R, source2: AsyncIterable, source3: AsyncIterable, source4: AsyncIterable, source5: AsyncIterable, source6: AsyncIterable): AsyncIterableX; export declare function combineLatestProto(this: AsyncIterableX, ...sources: AsyncIterable[]): AsyncIterableX; export declare function combineLatestProto(this: AsyncIterableX, project: (values: T[]) => R, ...sources: AsyncIterable[]): AsyncIterableX; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX { combineLatest: typeof combineLatestProto; } }