import { EventStream } from "./observable"; import Observable from "./observable"; import { Property } from "./observable"; /** @hidden */ export declare function withLatestFromE(sampler: EventStream, samplee: Observable, f: (value: V, otherValue: V2) => R): EventStream; /** @hidden */ export declare function withLatestFromP(sampler: Property, samplee: Observable, f: (value: V, otherValue: V2) => R): Property; /** @hidden */ export declare function withLatestFrom(sampler: Observable, samplee: Observable, f: (value: V, otherValue: V2) => R): Observable; export default withLatestFrom;