import type { PersistStoreProps } from '../types.js'; import type { RouteExecutionState } from './types.js'; export declare const createRouteExecutionStore: ({ namePrefix }: PersistStoreProps) => import("zustand").UseBoundStore, "setState" | "persist"> & { setState(partial: RouteExecutionState | Partial | ((state: RouteExecutionState) => RouteExecutionState | Partial), replace?: false | undefined): unknown; setState(state: RouteExecutionState | ((state: RouteExecutionState) => RouteExecutionState), replace: true): unknown; persist: { setOptions: (options: Partial>; }, unknown>>) => void; clearStorage: () => void; rehydrate: () => Promise | void; hasHydrated: () => boolean; onHydrate: (fn: (state: RouteExecutionState) => void) => () => void; onFinishHydration: (fn: (state: RouteExecutionState) => void) => () => void; getOptions: () => Partial>; }, unknown>>; }; }>;