import { OperatorFunction } from 'rxjs'; import { IChangeSet } from '../IChangeSet'; import { Change } from '../Change'; /** * Returns an observable of any updates which match the specified key, preceeded with the initital cache state * @typeparam TObject The type of the object. * @typeparam TKey The type of the key. * @param key The key. */ export declare function watch(key: TKey): OperatorFunction, Change>;