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