export declare function useStoreSelector(store: { state(): S; subscribe(fn: () => void): () => void; }, selector: (state: S) => R, isEqual?: (a: R, b: R) => boolean): R;