import { Component } from 'react'; import 'antd/es/radio/style/css'; interface Iprops { ryu: (props: any) => void; color: string; type: number; } export default class EditSeparatorPlugin extends Component { static defaultProps: { type: number; color: string; }; render(): JSX.Element; onTypeChange: (event: any) => void; onColorChange: (value: any) => void; } export {};