SongSchema: ZodObject<
{
artist: ZodString;
audioURL: ZodUnion<
readonly [ZodURL, ZodCustomStringFormat<"SoundCloudSong">],
>;
cover: ZodNullable<ZodUnion<readonly [ZodURL, ZodURL]>>;
hrefURL: ZodUnion<readonly [ZodURL, ZodURL]>;
name: ZodString;
},
$strip,
> = ...