import React, { Dispatch, SetStateAction } from 'react'; interface RichTextProps { value?: string; setValue?: Dispatch>; name: string; editable?: boolean; } declare const RichText: React.FC; export default RichText;