/** * Represents an image message type. */ type MessageImageType = { /** * The URL of the image attachment. */ url: string; }; export type { MessageImageType };