import { ChangeDispatcher } from '../internals/ChangeDispatcher.js'; import 'rxjs'; import '../internals/Change.js'; type DispatcherDecorated = { [key in Key]: ChangeDispatcher; }; declare const Dispatcher: () => (objOrCls: DispatcherDecorated, propertyKey: Key) => void; export { Dispatcher, DispatcherDecorated };