/**
 * Enum representing different recording formats for the Record NCCO action.
 */
declare enum RecordingFormat {
    /**
     * MP3 audio format.
     */
    MP3 = "mp3",
    /**
     * WAV audio format.
     */
    WAV = "wav",
    /**
     * OGG audio format.
     */
    OGG = "ogg"
}

export { RecordingFormat };
