import React from "react";
interface Props {
    value?: string;
    onChange?: (html: string) => void;
    style?: React.CSSProperties;
    placeholder?: string;
    readOnly?: boolean;
}
export declare function HtmlEditor({ value, onChange, style, placeholder, readOnly }: Props): import("react/jsx-runtime").JSX.Element;
export {};
