import type { StoreApi } from 'zustand'; export declare function useZustand(store: StoreApi, selector: (state: State) => Slice, areEqual?: (a: Slice, b: Slice) => boolean): Slice;