/**
 * @example
 *     {
 *         historyItemIds: ["history_item_ids", "history_item_ids"]
 *     }
 */
export interface DownloadHistoryRequest {
    /** A list of history items to download, you can get IDs of history items and other metadata using the GET https://api.elevenlabs.io/v1/history endpoint. */
    historyItemIds: string[];
    /** Output format to transcode the audio file, can be wav or default. */
    outputFormat?: string;
}
