import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomerPaymentMethod } from "./customerpaymentmethod.js"; export type CustomerPaymentMethodCreateSucceededResponse = { status: "succeeded"; paymentMethod: CustomerPaymentMethod; }; /** @internal */ export declare const CustomerPaymentMethodCreateSucceededResponse$inboundSchema: z.ZodMiniType; export declare function customerPaymentMethodCreateSucceededResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerpaymentmethodcreatesucceededresponse.d.ts.map