import * as React from "react"; export interface JoditProps { content: string; onChange(value: string): void; config: any; name(value: string): "name for textarea"; styleName(value: string): "className for textarea"; } export class JoditEditor extends React.Component { constructor(props: JoditProps, context: any); render(): JSX.Element; }