import { default as React } from 'react'; interface InformationTooltipProps { body: string; iconName?: string; title: string; } declare const InformationTooltip: React.FC; export default InformationTooltip;