import { JsonFormsDataValue } from './types'; /** * The parameters carry the initial value to manage and the callback to handle changes. Returns the * props and methods for managing the JSON value. */ export declare function useJsonProps(params: { value: JsonFormsDataValue; onChange: (value: JsonFormsDataValue) => void; }): { autosize: boolean; minRows: number; maxRows: number; validationError: string; formatOnBlur: boolean; value: string; onBlur: () => void; onChange: import('react').Dispatch>; };