import React from 'react'; import { IMessageBoxProps } from './MessageBox.types'; /** * MessageBox alert displays a short, important message in a way that attracts the user's attention without interrupting the user's task. */ declare const MessageBox: React.FC; export default MessageBox;