import React from "react"; import { CoreOptions } from "medium-editor"; interface ReactMediumEditorProps { value: string; onChange: (value: string) => void; onSelect: (value: string) => void; tag: string | [string, Record]; options?: CoreOptions; autoFocus?: boolean; [key: string]: any; } declare const _default: React.MemoExoticComponent<({ tag, value, onChange, options, onSelect, autoFocus }: ReactMediumEditorProps) => React.DOMElement<{ className: string; dangerouslySetInnerHTML: { __html: string; }; ref: React.RefObject; }, HTMLElement>>; export default _default;