import { ReactElement, FunctionComponent } from 'react';

interface HtmlProps {
    children: ReactElement;
}
declare const Html: FunctionComponent<HtmlProps>;

export { Html as default };
export type { HtmlProps };
