import * as z from "zod/v3"; export type DeletePaymentMethodNetworkTokenGlobals = { merchantAccountId?: string | undefined; }; export type DeletePaymentMethodNetworkTokenRequest = { /** * The ID of the payment method */ paymentMethodId: string; /** * The ID of the network token */ networkTokenId: string; /** * The ID of the merchant account to use for this request. */ merchantAccountId?: string | null | undefined; }; /** @internal */ export type DeletePaymentMethodNetworkTokenRequest$Outbound = { payment_method_id: string; network_token_id: string; merchantAccountId?: string | null | undefined; }; /** @internal */ export declare const DeletePaymentMethodNetworkTokenRequest$outboundSchema: z.ZodType; export declare function deletePaymentMethodNetworkTokenRequestToJSON(deletePaymentMethodNetworkTokenRequest: DeletePaymentMethodNetworkTokenRequest): string; //# sourceMappingURL=deletepaymentmethodnetworktoken.d.ts.map