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 IStoryPlaceholderProps { content?: IContent | string; className?: string; maxHeight?: string; } declare const RefStoryPlaceholder: React.ForwardRefExoticComponent>; export default RefStoryPlaceholder;