import { type TextAreaProps } from "../TextArea"; export interface JsonInputProps extends Omit { /** Value for controlled component */ value?: string; /** Default value for uncontrolled component */ defaultValue?: string; /** Called when value changes */ onChange?: (value: string) => void; /** Determines whether the value should be formatted on blur * @default true */ formatOnBlur?: boolean; } /** `JsonInput`继承了`TextArea`组件的属性 */ export declare function JsonInput(props: JsonInputProps): import("react").JSX.Element;