interface Props {
    open: boolean;
    onClose: () => void;
    title?: string;
    value?: string;
    onChange?: (html: string) => void;
    onSave?: (html: string) => void;
    saveButtonText?: string;
    maxWidth?: "xs" | "sm" | "md" | "lg" | "xl";
    fullWidth?: boolean;
}
export declare function HtmlModal({ open, onClose, title, value, onChange, onSave, saveButtonText, maxWidth, fullWidth }: Props): import("react/jsx-runtime").JSX.Element;
export {};
