import { Component } from 'react'; import 'antd/es/radio/style/css'; import 'antd/es/select/style/css'; interface Iprops { ryu: (props: any) => void; arrType: number; urlList: any[]; } interface IState { fileList: any[]; } export default class EditBlankPlugin extends Component { state: { fileList: any[]; }; componentDidMount(): void; setImage: () => void; onArrChange: (e: any) => void; onChangeImg: (fileList: any) => void; render(): JSX.Element; } export {};