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<SetStateAction<SubotMessage>>;
};
export declare const NodeContext: React.Context<NodeContextType>;
export declare const NodeContextProvider: ({ children }: Props) => React.JSX.Element;
export {};
