import { IBaseGraphProps } from "../types"; import React from "react"; import { Node } from "@xyflow/react"; export declare const GraphContext: React.Context<{ config: IBaseGraphProps; forceLayout: () => void; layoutDeps: number; initializedMap: Map; }>; export declare function GraphProvider = IBaseGraphProps>(props: { config: GraphProps; children: React.ReactNode; }): import("react/jsx-runtime").JSX.Element;