import { PropsWithChildren } from 'react'; import { GraphNodeId } from '@adam-sv/arc'; import type { IGraphRenderContext } from '.'; export declare const GraphContextProvider: ({ graphContext, children, }: PropsWithChildren<{ graphContext: IGraphRenderContext; }>) => import("react/jsx-runtime").JSX.Element; export declare const useGraphContext: () => IGraphRenderContext;