import React from 'react'; import type { PrimitiveData } from 'react-cosmos-core'; import type { LeafValue } from '../shared.js'; type Props = { value: LeafValue; name: string; id: string; indentLevel: number; onChange: (data: PrimitiveData) => unknown; }; export declare function ValueInput({ value, name, id, indentLevel, onChange }: Props): React.JSX.Element; export {};