import React from 'react'; import type { MessageFile } from '../ChatWindow'; /** * Displays the list of files attached to a user message. Renders nothing when * there are no attachments. */ declare const MessageAttachments: ({ files }: { files?: MessageFile[]; }) => React.JSX.Element; export default MessageAttachments;