Package:
@hexos/react-coreFile or image attachment associated with a message.
Supports file and image types with either a URL reference or base64-encoded data.
interface Attachment {
type: 'file' | 'image';
name: string;
url?: string;
data?: string;
mimeType?: string;
}