import * as React from 'react';
export interface HtmlFragmentProps {
    htmlString: string;
}
declare const HtmlFragment: React.FC<HtmlFragmentProps>;
export default HtmlFragment;
