interface RichTextEditorProps {
    content: string;
    onChange: (content: string) => void;
    placeholder?: string;
    className?: string;
}
export declare function RichTextEditor({ content, onChange, placeholder, className, }: RichTextEditorProps): import("react/jsx-runtime").JSX.Element;
export {};
