import * as z from "zod/v4-mini"; import { BillingCycle } from "./billing-cycle.js"; import { BillingPeriod } from "./billing-period.js"; export type BillingPeriodConfig = { billingAnchor?: Date | undefined; billingCycle?: BillingCycle | undefined; billingPeriodCount?: number | undefined; billingPeriodUnit?: BillingPeriod | undefined; }; /** @internal */ export type BillingPeriodConfig$Outbound = { billing_anchor?: string | undefined; billing_cycle?: string | undefined; billing_period_count?: number | undefined; billing_period_unit?: string | undefined; }; /** @internal */ export declare const BillingPeriodConfig$outboundSchema: z.ZodMiniType; export declare function billingPeriodConfigToJSON(billingPeriodConfig: BillingPeriodConfig): string; //# sourceMappingURL=billing-period-config.d.ts.map