import "./editor.css";
interface Props {
    value: string;
    onChange?: (value: string) => void;
    mode?: "interactive" | "preview";
    style?: any;
    textAlign?: "left" | "center" | "right";
    placeholder?: string;
    element?: any;
    showFloatingEditor?: boolean;
}
declare function Editor({ value, onChange, mode, textAlign, style, placeholder, showFloatingEditor, ...props }: Props): import("react/jsx-runtime").JSX.Element;
export default Editor;
