import * as z from "zod/v3"; export type DeletePaymentMethodGlobals = { merchantAccountId?: string | undefined; }; export type DeletePaymentMethodRequest = { /** * The ID of the payment method */ paymentMethodId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type DeletePaymentMethodRequest$Outbound = { payment_method_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const DeletePaymentMethodRequest$outboundSchema: z.ZodType; export declare function deletePaymentMethodRequestToJSON(deletePaymentMethodRequest: DeletePaymentMethodRequest): string; //# sourceMappingURL=deletepaymentmethod.d.ts.map