import React from 'react'; import './index.less'; export interface ReactEditorProps { value?: string; propsName?: string; type?: string; jsx: { key: string; }; onZoom: (isEnlarge: boolean) => void; } declare const JSXEditor: React.ForwardRefExoticComponent>; export default JSXEditor;