import * as z from "zod/v4-mini"; import { CollectionMethod } from "./collection-method.js"; import { PaymentMethodType } from "./payment-method-type.js"; export type CheckoutPaymentProviderConfig = { collectionMethod?: CollectionMethod | undefined; maxMandateLimit?: string | undefined; paymentMethod?: PaymentMethodType | undefined; }; /** @internal */ export type CheckoutPaymentProviderConfig$Outbound = { collection_method?: string | undefined; max_mandate_limit?: string | undefined; payment_method?: string | undefined; }; /** @internal */ export declare const CheckoutPaymentProviderConfig$outboundSchema: z.ZodMiniType; export declare function checkoutPaymentProviderConfigToJSON(checkoutPaymentProviderConfig: CheckoutPaymentProviderConfig): string; //# sourceMappingURL=checkout-payment-provider-config.d.ts.map