import React from "react"; type ContentEditableProps = Omit, "onChange"> & { initialContent?: string; innerRef?: (e: HTMLDivElement | null) => void; onChange?: (html: string, isBlur?: boolean) => void; onBlur?: (e: React.FocusEvent) => void; autoFocus?: boolean; allowEdit?: boolean; }; declare const ContentEditable: React.FC; export default ContentEditable;