import React from 'react'; import './index.scss'; import { MessageProps } from './type'; declare const Message: React.FC & { success?: any; warning?: any; error?: any; info?: any; closeAll?: any; }; export default Message;