export interface Voice {
    /** The voice ID. */
    id: string;
    /** The voice name. */
    name: string;
    /** The voice description. */
    description: string | null;
    /** Presigned URL to the voice sample audio file. Expires in 7 days. */
    audio_url: string;
}
