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