import * as z from "zod/v3"; import * as components from "../components/index.js"; export type ConfigureDigitalWalletGlobals = { merchantAccountId?: string | undefined; }; export type ConfigureDigitalWalletRequest = { /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; digitalWalletCreate: components.DigitalWalletCreate; }; /** @internal */ export type ConfigureDigitalWalletRequest$Outbound = { merchantAccountId?: string | null | undefined; DigitalWalletCreate: components.DigitalWalletCreate$Outbound; }; /** @internal */ export declare const ConfigureDigitalWalletRequest$outboundSchema: z.ZodType; export declare function configureDigitalWalletRequestToJSON(configureDigitalWalletRequest: ConfigureDigitalWalletRequest): string; //# sourceMappingURL=configuredigitalwallet.d.ts.map