import { Jodit } from 'jodit/esm/index'; import * as React from 'react'; type DeepPartial = T extends object ? { [P in keyof T]?: DeepPartial; } : T; export interface IJoditEditorProps { value: string; className?: string; config?: DeepPartial; // eslint-disable-next-line no-unused-vars onChange?: (newValue: string) => void; // eslint-disable-next-line no-unused-vars onBlur?: (newValue: string) => void; } declare const JoditEditor: React.ForwardRefExoticComponent< React.PropsWithoutRef & React.RefAttributes >; export default JoditEditor; export { Jodit };