/** * Represents a file message type. */ type MessageFileType = { /** * The URL of the file attachment. */ url: string; }; export type { MessageFileType };