import { Observable } from 'rxjs'; /** * Combine multiple Observables passed as an object to create * an Observable that emits an object with the same keys and, * as values, the latest values of each of the corresponding * input Observables. * * Like `combineLatest` but for object properties instead of * iterable of Observables. * * @param input */ declare function combinePropsLatest(input: { [key: string]: Observable; }): Observable<{ [key: string]: any; }>; export default combinePropsLatest;