import { type ValueSubscription } from './value-subscription'; type Dependency = { name: string; subscribe(onUpdate: () => void): () => void; }; export declare const StableValue: ({ name, read, deps, }: { name: string; read: () => T; deps?: Dependency[] | undefined; }) => ValueSubscription & { reset: () => void; }; export {}; //# sourceMappingURL=stable-value.d.ts.map