import { WeElement } from 'omi'; import * as Quill from 'quill'; import '../theme.ts'; interface Props { } interface Data { } export default class Editor extends WeElement { static css: any; static propTypes: {}; editor: Quill; installed(): void; render(props: any): JSX.Element; } export {};