import { Component } from 'react'; interface Iprops { ryu: (props: any) => void; value: any; } export default class EditBlankPlugin extends Component { render(): JSX.Element; onChangeRich: (value: any) => void; } export {};