/// 
import { ReactFlowState } from '../types';
declare const Provider: ({ initialStore, createStore, children, }: {
    initialStore?: import("zustand").UseBoundStore> | undefined;
    createStore: () => import("zustand").UseBoundStore>;
    children: import("react").ReactNode;
}) => import("react").FunctionComponentElement> | undefined>>, useStore: import("zustand/context").UseContextStore, useStoreApi: () => {
    getState: import("zustand").GetState;
    setState: import("zustand").SetState;
    subscribe: import("zustand").Subscribe;
    destroy: import("zustand").Destroy;
};
declare const createStore: () => import("zustand").UseBoundStore>;
export { Provider, useStore, createStore, useStoreApi };