export declare class PromocodeInformationModel { promocodeID: number; type: string; nameEn: string; nameAr: string; descEn: string; descAr: string; activationDate: Date; expirationDate: Date; valueType: string; value: number; currency: string; redemptionLimitation: number; usageType: string; source: string; creationDate: Date; fileURL: string; accumulationChannels: number[]; redemptionChannels: number[]; viewableChannels: number[]; constructor(promocodeID: number, type: string, nameEn: string, nameAr: string, descEn: string, descAr: string, activationDate: Date, expirationDate: Date, valueType: string, value: number, currency: string, redemptionLimitation: number, usageType: string, source: string, creationDate: Date, fileURL: string, accumulationChannels: number[], redemptionChannels: number[], viewableChannels: number[]); }