import React from "react"; declare module "jodit-react" { export interface IJoditEditorProps { value: string; config?: object; onChange: (newValue: string) => void; name(value: string): "name for textarea"; styleName(value: string): "className for textarea"; } const JoditEditor: React.ComponentType; export default JoditEditor; }