/// import type { CommonPropsType } from '../../types'; import './style'; export interface PropsType extends CommonPropsType { value: string; } export default function RichTextView({ value, className, style, id, }: PropsType): JSX.Element;