import { type ScheduledChangeAction } from '../../enums/index.js'; import { type ISubscriptionScheduledChangeResponse } from '../../types/index.js'; export declare class SubscriptionScheduledChange { readonly action: ScheduledChangeAction; readonly effectiveAt: string; readonly resumeAt: string | null; constructor(subscriptionScheduledChange: ISubscriptionScheduledChangeResponse); }