import * as z from "zod/v3"; export type DeleteDigitalWalletGlobals = { merchantAccountId?: string | undefined; }; export type DeleteDigitalWalletRequest = { /** * The ID of the digital wallet to delete. */ digitalWalletId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type DeleteDigitalWalletRequest$Outbound = { digital_wallet_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const DeleteDigitalWalletRequest$outboundSchema: z.ZodType; export declare function deleteDigitalWalletRequestToJSON(deleteDigitalWalletRequest: DeleteDigitalWalletRequest): string; //# sourceMappingURL=deletedigitalwallet.d.ts.map