/** * Initializes a reaction. The function passed in is invoked immediately and then again anytime any * observable property accessed in the function's last execution is mutated. * https://fnx.js.org/docs/api/reaction.html * @param fn The function to run when this reaction is triggered */ export declare function reaction(fn: () => void): { remove(): void; };