import { FC } from 'react';
import { TypographyProps } from '../Typography/Typography.js';

type HtmlParserProps = {
    children: string;
    typographyProps?: Partial<TypographyProps>;
};
declare const HtmlParser: FC<HtmlParserProps>;

export { HtmlParser as default };
export type { HtmlParserProps };
