import { type Context } from 'react'; import type { Store } from './store.js'; /** * A hook that allows you to subscribe to state updates from the store. * @public */ export declare function useStoreSelector(context: Context>, selector: (state: S) => T, isEqual?: (a: T, b: T) => boolean): T;