import { Component } from 'react'; import { Iitem } from '../../../definition/hotmap'; import 'antd/es/button/style/css'; import './index.css'; interface Iprops { ryu: (props: any) => void; url: string; hotAreaList: Iitem[]; } export default class EditBlankPlugin extends Component { state: { fileList: any[]; imgBoxRef: any; }; imgBoxRef: any; onAddImg: (fileList: any) => void; addHotArea: () => void; onChangeHotAreaItem: (value: Iitem, key: 'delete' | 'modify') => void; setRefs: (imgBoxRef: any) => void; render(): JSX.Element; onChangeSwitch: (checked: boolean) => void; onHeightChange: (value: number) => void; onBackgroundChange: (value: any) => void; } export {};