import React from 'react'; interface MessageProps { type: 'error' | 'success'; title: string; actionComponent?: JSX.Element; children?: JSX.Element | JSX.Element[]; } declare const Message: React.FC; export default Message;