export interface DialogueInput {
    /** The text to be converted into speech. */
    text: string;
    /** The ID of the voice to be used for the generation. */
    voiceId: string;
}
