import React from 'react'; interface JsonEditorProps { value?: any; onChange?: (value: any) => void; disabled?: boolean; placeholder?: string; rows?: number; style?: React.CSSProperties; } declare const JsonEditor: React.FC; export default JsonEditor;