import { TPlateEditor } from "../../../../../node_modules/@udecode/plate-common/dist/react/index.d.ts"; import { Value } from "@udecode/slate"; import { PropsWithChildren } from "react"; export declare const MIN_HEIGHT_VALUE = 160; interface HTMLEditorProps { editor: TPlateEditor; readOnly: boolean; scrollToBottom: () => void; onChange: (options: { editor: TPlateEditor; value: Value; }) => void; } export declare function HTMLEditor({ readOnly, editor, onChange, scrollToBottom }: PropsWithChildren): JSX.Element; export {};