/// import type { StoreApi } from 'zustand'; import type { UseBoundStoreWithEqualityFn } from 'zustand/traditional'; import type { PersistStoreProviderProps } from '../types'; import type { ChainOrderState } from './types'; export type ChainOrderStore = UseBoundStoreWithEqualityFn>; export declare const ChainOrderStoreContext: import("react").Context; export declare function ChainOrderStoreProvider({ children, ...props }: PersistStoreProviderProps): import("react/jsx-runtime").JSX.Element; export declare function useChainOrderStore(selector: (state: ChainOrderState) => T, equalityFn?: (left: T, right: T) => boolean): T; export declare function useChainOrderStoreContext(): ChainOrderStore;