import { HTMLAttributes } from 'react';
export interface RichTextViewProps extends HTMLAttributes {
/**
* 自定义 class
*/
className?: string;
/**
* 内容值,html string
*/
value?: string;
}
export declare const RichTextView: import("react").ForwardRefExoticComponent>;