import { PlannedChangeProperties } from './PlannedChangeProperties';
/** Change planned on a Savings Plan */
export interface PlannedChange {
    /** Date when the change will occur */
    plannedOn: string;
    /** Properties of the Savings Plan changing on planned date */
    properties: PlannedChangeProperties;
}
//# sourceMappingURL=PlannedChange.d.ts.map