import React, { ReactNode } from 'react'; import { Dispatch, SetStateAction } from 'react'; import { SubotMessage } from "../../../interfaces/types"; type Props = { children?: ReactNode; }; type NodeContextType = { value: SubotMessage; setValue: Dispatch>; }; export declare const NodeContext: React.Context; export declare const NodeContextProvider: ({ children }: Props) => React.JSX.Element; export {};