import * as z from "zod/v3"; import * as components from "../components/index.js"; export type CompletePazeMobileSessionGlobals = { merchantAccountId?: string | undefined; }; export type CompletePazeMobileSessionRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; pazeSessionCompleteRequest: components.PazeSessionCompleteRequest; }; /** @internal */ export type CompletePazeMobileSessionRequest$Outbound = { merchantAccountId?: string | null | undefined; PazeSessionCompleteRequest: components.PazeSessionCompleteRequest$Outbound; }; /** @internal */ export declare const CompletePazeMobileSessionRequest$outboundSchema: z.ZodType; export declare function completePazeMobileSessionRequestToJSON(completePazeMobileSessionRequest: CompletePazeMobileSessionRequest): string; //# sourceMappingURL=completepazemobilesession.d.ts.map