import type { NoChildrenProp, OmitStrict, WithAttributes } from '@pega/cosmos-react-core'; import type { RichTextViewerProps } from '@pega/cosmos-react-rte'; import type { FeedContentProps } from './Feed.types'; type FeedRichTextViewerProps = WithAttributes<'div', OmitStrict & NoChildrenProp & { content: string; onLinkRender?: RichTextViewerProps['onMarkdownLinkRender']; }>; declare const FeedRichTextViewer: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default FeedRichTextViewer; //# sourceMappingURL=FeedRichTextViewer.d.ts.map