import React from 'react'; export interface MessageProps { text: string; isOwn?: boolean; timestamp?: string; status?: 'sent' | 'delivered' | 'read'; } export declare const Message: React.FC; export default Message;