import * as React from 'react'; interface IContent { aone?: { url: string; priorityId: string; project: { id: string; name: string; }; creator: { empId: string; name: string; }; assigner: { empId: string; name: string; }; }; subject: string; description: string; hideTitle?: boolean; id?: string; } interface IRichTextProps { content?: IContent | string; className?: string; maxHeight?: string; } declare const RefRichText: React.ForwardRefExoticComponent>; export default RefRichText;