/** Supported timings when a pending change, as an action, takes place to a subscription. */ export declare const ChangeTiming: { readonly Immediate: "IMMEDIATE"; readonly EndOfBillingCycle: "END_OF_BILLING_CYCLE"; }; export type ChangeTiming = (typeof ChangeTiming)[keyof typeof ChangeTiming];