import React from 'react'; export type MessageProps = { id?: string; type?: string; state?: string; text?: string; }; declare const Message: React.FC; export default Message;