export interface RichTextEditorProps extends React.ComponentProps<"div"> {
    editable?: boolean;
    placeholder?: string;
    /** 内容文字限制长度 */
    limit?: number;
    uploadImageUrl?: string;
    imageResizable?: boolean;
    slots?: {
        toolbar?: string;
        content?: string;
    };
}
export declare function RichTextEditor(props: RichTextEditorProps): import("react").JSX.Element | null;
