import { ISettableObservable } from "../base.js"; import { IDebugNameData } from "../debugName.js"; import { EqualityComparer } from "../commonFacade/deps.js"; import { DebugLocation } from "../debugLocation.js"; export declare function observableValueOpts(options: IDebugNameData & { equalsFn?: EqualityComparer; lazy?: boolean; }, initialValue: T, debugLocation?: DebugLocation): ISettableObservable;