import type { ReactFlowState, Node, Edge } from '../types';
declare const createRFStore: ({ nodes, edges, width, height, fitView, }: {
    nodes?: Node<any, string | undefined>[] | undefined;
    edges?: Edge<any>[] | undefined;
    width?: number | undefined;
    height?: number | undefined;
    fitView?: boolean | undefined;
}) => import("zustand/traditional").UseBoundStoreWithEqualityFn<import("zustand").StoreApi<ReactFlowState>>;
export { createRFStore };
//# sourceMappingURL=index.d.ts.map