import { AudioObject } from '../../interfaces/AudioObject.js'; import { MMSAudio } from './MMSAudio.js'; import '../AbstractAudioMessage.js'; import '../AbstractMessage.js'; import '../../enums/Channels.js'; import '../../enums/MessageTypes.js'; import '../../types/MessageParams.js'; import '../../types/MessageParamsAudio.js'; import '../../types/MessageAudioType.js'; /** * Represents an audio message for the MMS channel. * * @deprecated Please use the MMSAudio class instead. * * @group MMS */ declare class Audio extends MMSAudio { /** * Constructs a new `Audio` instance for the MMS channel. * * @param {AudioObject} audio - The audio content of the message. * @param {string} to - The recipient of the message. * @param {string} from - The sender of the message. * @param {string} clientRef - The client reference for the message. */ constructor(audio: AudioObject, to?: string, from?: string, clientRef?: string); } export { Audio };