export declare class CouponInformationModel { nameEn: string; nameAr: string; descEn: string; descAr: string; activationDate: Date; expirationDate: Date; valueType: string; value: number; currency: string; usageType: string; amount: number; creationDate: Date; accumulationChannels: number[]; redemptionChannels: number[]; viewableChannels: number[]; constructor(nameEn: string, nameAr: string, descEn: string, descAr: string, activationDate: Date, expirationDate: Date, valueType: string, value: number, currency: string, usageType: string, amount: number, creationDate: Date, accumulationChannels: number[], redemptionChannels: number[], viewableChannels: number[]); }