import * as z from "zod/v3"; export type GoogleIdTokenObject = { /** * A Google-signed OIDC ID token representing a player's authenticated identity. Learn how to get an `idToken` [here](https://cloud.google.com/docs/authentication/get-id-token). */ idToken: string; }; /** @internal */ export type GoogleIdTokenObject$Outbound = { idToken: string; }; /** @internal */ export declare const GoogleIdTokenObject$outboundSchema: z.ZodType; export declare function googleIdTokenObjectToJSON(googleIdTokenObject: GoogleIdTokenObject): string; //# sourceMappingURL=googleidtokenobject.d.ts.map