import React from "react"; import { ReactNode } from "react"; import { InternalGraphContext } from "./use-graph"; export declare const GraphContextServer: ({ value, children }: { value: InternalGraphContext; children: ReactNode; }) => React.JSX.Element; export declare const useGraphServer: () => InternalGraphContext;