import { type ReactNode } from 'react';
import type { Node, Edge } from '../../types';
export declare function ReactFlowProvider({ children, initialNodes, initialEdges, initialWidth, initialHeight, fitView, }: {
    children: ReactNode;
    initialNodes?: Node[];
    initialEdges?: Edge[];
    initialWidth?: number;
    initialHeight?: number;
    fitView?: boolean;
}): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map