Variable authBearerSchemaConst
authBearerSchema: ZodUnion<
readonly [
ZodObject<{ token: ZodString; type: ZodLiteral<"bearer"> }, $strip>,
ZodObject<
{
getToken: ZodCustom<() => Promise<string>, () => Promise<string>>;
type: ZodLiteral<"bearer">;
},
$strip,
>,
],
> = ...