export interface SongMetadata { /** The title of the song */ title?: string; /** The description of the song */ description?: string; /** The genres of the song */ genres: string[]; /** The languages of the song */ languages: string[]; /** Whether the song is explicit */ isExplicit?: boolean; }