import type { StoreApi } from 'zustand/vanilla'; import { type IslandStoreState } from '../client/islandStore'; export declare const useIslandStore: (store: StoreApi, selector: (state: TState) => TSelected) => { subscribe(listener: (value: TSelected) => void): () => void; };