import { IReaction } from '../@types'; import { WidgetTree } from './widgetTree'; export declare const reactionRegister: (path: string, reactions: IReaction[] | undefined, widgetTree: WidgetTree) => void; export declare const reactionUnRegister: (path: string) => void; export declare const reactionDispatch: (path: string, typeName: string) => void;