import { ReactStore } from '@base-ui/utils/store'; type SelectorFunction = (state: State, ...args: any[]) => any; /** * A `ReactStore` whose state never changes. * * Useful for fallback stores that need to support normal store reads while detached from the * component that owns real state. Context values may still contain mutable refs or maps. */ export declare class NullStore, Selectors extends Record> = Record> extends ReactStore { setState(_newState: State): void; update(_changes: Pick): void; set(_key: Key, _value: State[Key]): void; notifyAll(): void; } export {};