import { F } from "./util/Utils.js";
import { RxObject } from "./core/Mvcc.js";
export declare class ReactionEx<T> extends RxObject {
    protected operation: F<T>;
    constructor(operation: F<T>);
    protected launch(): T;
}
