import * as React from 'react'; import '../index.scss'; import { IHasCX, IHasChildren, IHasRawProps } from '@epam/uui-core'; export interface RichTextViewProps extends IHasCX, IHasChildren, IHasRawProps> { /** HTML content to be rendered */ htmlContent?: any; } export declare class RichTextView extends React.Component { getViewByProps(content: string): React.JSX.Element; getViewByChildren(content: React.ReactNode): React.JSX.Element; render(): React.JSX.Element; } //# sourceMappingURL=RichTextView.d.ts.map