import { FC } from 'react'; export interface InternetExplorerAlertProps { onClose: () => void; translations: { title: string; lead: string; }; } declare const InternetExplorerAlert: FC; export default InternetExplorerAlert;