/** * An in-memory store for useSyncExternalStore. */ export declare const createMemoryStore: (initialValue: T) => { add: (value: Partial) => void; get: () => Readonly; set: (value: T) => void; subscribe: (listener: () => void) => () => boolean; };