/// import type { StoreApi } from 'zustand'; import type { UseBoundStoreWithEqualityFn } from 'zustand/traditional'; import type { PersistStoreProviderProps } from '../types'; import type { RouteExecutionState } from './types'; export type RouteExecutionStore = UseBoundStoreWithEqualityFn>; export declare const RouteExecutionStoreContext: import("react").Context; export declare function RouteExecutionStoreProvider({ children, ...props }: PersistStoreProviderProps): import("react/jsx-runtime").JSX.Element; export declare function useRouteExecutionStore(selector: (state: RouteExecutionState) => T, equalityFn?: (left: T, right: T) => boolean): T; export declare function useRouteExecutionStoreContext(): RouteExecutionStore;