interface HtmlEmbedProps extends React.ComponentProps<'div'> {
    html: string;
}
declare function HtmlEmbed(props: HtmlEmbedProps): React.ReactElement;

export { HtmlEmbed };
