import { Observable } from 'rxjs'; import type { StoreApi } from 'zustand/vanilla'; import { type IslandStoreState } from '../client/islandStore'; declare class IslandStoreImpl { get(store: StoreApi, selector: (state: TState) => TSelected): TSelected; select(store: StoreApi, selector: (state: TState) => TSelected): Observable; } export declare const IslandStore: typeof IslandStoreImpl; export {};