import { HtmlHTMLAttributes } from 'react'; import { ElementType } from 'react'; /** * HTML content props */ export type HtmlContentProps = HtmlHTMLAttributes & { component?: ElementType; innerHTML: string; }; /** * HTML content * @param props Props * @returns Component */ export declare function HtmlContent(props: HtmlContentProps): JSX.Element;