import { Relation } from 'typeorm'; import { PromotionType } from '../types/enums'; import { AsinPromotion } from './asinPromotion'; import { DevicePromotion } from './devicePromotion'; import { DeviceTypePromotion } from './deviceTypePromotion'; import { MarketplacePromotion } from './marketplacePromotion'; export declare class Promotion { id: number; name: string; description: string; type: PromotionType; discount?: number; discountBillingCycles?: number; freeServiceMonths?: number; startDate: Date; endDate?: Date; status: string; bannerText?: string; trackerText?: string; marketplacePromotions: Relation[]; asinPromotions?: Relation[]; devicePromotions?: Relation[]; deviceTypePromotions?: Relation[]; }