import { SimpleButtonProps } from '../components/SimpleButton'; import './JsonEditor.less'; export interface JsonEditorProps extends Omit { value?: any; onChange?: (value: any) => void; } declare const JsonEditor: (props: JsonEditorProps) => JSX.Element; export default JsonEditor;