/**
 * Allows access to a changing value in a stable way.
 */
export declare function useStable<Value>(value: Value): () => Value;
