import React, { PureComponent } from 'react'; import Editor from '@ali/lowcode-editor-core'; import './index.scss'; export interface TopAreaProps { editor: Editor; } export default class TopArea extends PureComponent { static displayName: string; private areaManager; private editor; constructor(props: any); componentDidMount(): void; componentWillUnmount(): void; handleSkeletonUpdate: () => void; renderPluginList: (list?: any[]) => any[]; render(): React.ReactNode; }