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