export interface PodcastTextSource { /** The type of source to create. */ type: "text"; /** The text to create the podcast from. */ text: string; }