import { SubscriptionProduct } from "./SubscriptionProduct";
import { SubscriptionProductVersion } from "./SubscriptionProductVersion";
declare class SubscriptionProductVersionRetirement {
    /**
    * The date and time when the object was created.
    */
    'createdOn'?: Date;
    /**
    * A unique identifier for the object.
    */
    'id'?: number;
    /**
    * The ID of the space this object belongs to.
    */
    'linkedSpaceId'?: number;
    /**
    * The product version that is to be retired.
    */
    'productVersion'?: SubscriptionProductVersion;
    /**
    * Whether the subscriptions' termination periods should be respected.
    */
    'respectTerminationPeriods'?: boolean;
    /**
    * The product to which the subscriptions with the retiring product version are to be migrated. If none is defined, the subscriptions are terminated.
    */
    'targetProduct'?: SubscriptionProduct;
    /**
    * The version is used for optimistic locking and incremented whenever the object is updated.
    */
    'version'?: number;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { SubscriptionProductVersionRetirement };
