import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type WebhookDataPaymentMethodDisabled = { accountID: string; paymentMethodID: string; sourceID: string; }; /** @internal */ export declare const WebhookDataPaymentMethodDisabled$inboundSchema: z.ZodType; /** @internal */ export type WebhookDataPaymentMethodDisabled$Outbound = { accountID: string; paymentMethodID: string; sourceID: string; }; /** @internal */ export declare const WebhookDataPaymentMethodDisabled$outboundSchema: z.ZodType; export declare function webhookDataPaymentMethodDisabledToJSON(webhookDataPaymentMethodDisabled: WebhookDataPaymentMethodDisabled): string; export declare function webhookDataPaymentMethodDisabledFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookdatapaymentmethoddisabled.d.ts.map