import { MonoTypeChangeSetOperatorFunction } from '../ChangeSetOperatorFunction'; /** * Disposes each item when no longer required. * Individual items are disposed when removed or replaced. All items * are disposed when the stream is disposed * @typeparam TObject The type of the object. * @typeparam TKey The type of the key. */ export declare function disposeMany(removeAction?: (value: TObject) => void): MonoTypeChangeSetOperatorFunction;