import * as z from "zod/v3"; import { OpenEnum } from "../../types/enums.js"; /** * Indicates the amount type unit for the subscription. Allowed values are: `FIXED`, `VARIABLE`. */ export declare const DlocalPIXSubscriptionAmountOptionsType: { readonly Fixed: "FIXED"; readonly Variable: "VARIABLE"; }; /** * Indicates the amount type unit for the subscription. Allowed values are: `FIXED`, `VARIABLE`. */ export type DlocalPIXSubscriptionAmountOptionsType = OpenEnum; export type DlocalPIXSubscriptionAmountOptions = { /** * Indicates the amount type unit for the subscription. Allowed values are: `FIXED`, `VARIABLE`. */ type: DlocalPIXSubscriptionAmountOptionsType; /** * Fixed subscription amount in local currency. Required only for fixed amount subscriptions depending on the payment method. */ value?: string | null | undefined; /** * Minimum payer enrollment limit, not minimum recurring charge amount. */ minValue: string | null; }; /** @internal */ export declare const DlocalPIXSubscriptionAmountOptionsType$outboundSchema: z.ZodType; /** @internal */ export type DlocalPIXSubscriptionAmountOptions$Outbound = { type: string; value?: string | null | undefined; min_value: string | null; }; /** @internal */ export declare const DlocalPIXSubscriptionAmountOptions$outboundSchema: z.ZodType; export declare function dlocalPIXSubscriptionAmountOptionsToJSON(dlocalPIXSubscriptionAmountOptions: DlocalPIXSubscriptionAmountOptions): string; //# sourceMappingURL=dlocalpixsubscriptionamountoptions.d.ts.map