import { Observable, OperatorFunction } from 'rxjs'; import { IChangeSet } from '../IChangeSet'; /** * Produces a boolean observable indicating whether the resulting value of whether any of the specified observables matches * the equality condition. The observable is re-evaluated whenever * i) The cache changes. * or ii) The inner observable changes. * @typeparam TObject The type of the object. * @typeparam TKey The type of the key. * @typeparam TValue The type of the value. * @param observableSelector The observable selector. * @param equalityCondition The equality condition. */ export declare function trueForAny(observableSelector: (value: TObject) => Observable, equalityCondition: (value: TObject, item: TValue) => boolean): OperatorFunction, boolean>;