import { Component } from 'react'; import 'antd/es/input/style/css'; import 'antd/es/input-number/style/css'; interface Iprops { ryu: (props: any) => void; url: string; cover: string; backImg: string; width: number; position: { left: number; top: number; }; borderRadius: number; } interface IState { fileList: any[]; backList: any[]; } export default class EditBlankPlugin extends Component { state: { fileList: any[]; backList: any[]; }; componentDidMount(): void; setImage: () => void; onChange: (e: any) => void; onChangeImg: (fileList: any) => void; onChangeBack: (backList: any) => void; onWidthChange: (v: number) => void; onRadioChange: (v: number) => void; onPositionChange: (key: 'left' | 'top', value: number) => void; render(): JSX.Element; } export {};