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"; import { Pagination } from "./pagination.js"; export type ListResourceCustomerPaymentMethod = { items: Array; pagination: Pagination; }; /** @internal */ export declare const ListResourceCustomerPaymentMethod$inboundSchema: z.ZodMiniType; export declare function listResourceCustomerPaymentMethodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listresourcecustomerpaymentmethod.d.ts.map