Variable countryAvailabilitySchemaConst
countryAvailabilitySchema: ZodMiniDiscriminatedUnion<
[
ZodMiniObject<{ status: ZodMiniLiteral<"available"> }, $strip>,
ZodMiniObject<{ status: ZodMiniLiteral<"unavailable"> }, $strip>,
ZodMiniObject<
{ message: ZodMiniString<string>; status: ZodMiniLiteral<"error"> },
$strip,
>,
],
"status",
> = ...