import * as z from "zod/v3"; import * as components from "../components/index.js"; export type LoginGoogleGlobals = { appId?: string | undefined; }; export type LoginGoogleRequest = { appId?: string | undefined; googleIdTokenObject: components.GoogleIdTokenObject; }; /** @internal */ export type LoginGoogleRequest$Outbound = { appId?: string | undefined; GoogleIdTokenObject: components.GoogleIdTokenObject$Outbound; }; /** @internal */ export declare const LoginGoogleRequest$outboundSchema: z.ZodType; export declare function loginGoogleRequestToJSON(loginGoogleRequest: LoginGoogleRequest): string; //# sourceMappingURL=logingoogle.d.ts.map