/// import { type JsonValue, type ValueType } from '../types'; export type NodeValueProps = { /** * Значение узла */ value: JsonValue; /** * Цвет */ color: string; /** * Тип значения */ type: ValueType; }; export declare const NodeValue: (props: NodeValueProps) => JSX.Element;