import { PromotionDetails } from './PromotionDetails';
/** Migration or address move offer promotion */
export interface Promotion {
    /** Promotion end date, if applicable */
    endDate?: string;
    /** Identifier of the promotion */
    id: string;
    /** Details of the promotion for the install fee */
    installFee?: PromotionDetails;
    /** Promotion start date, if applicable */
    startDate?: string;
    /** Details of the promotion for the subscription */
    subscription?: PromotionDetails;
}
//# sourceMappingURL=Promotion.d.ts.map