import { CreateCouponModel } from "./create-coupon-model"; import { CreatePromoModel } from "./create-promo-model"; export declare class PartnerInformationModel { coupons: CreateCouponModel[]; promos: CreatePromoModel[]; partnerId: string; constructor(coupons: CreateCouponModel[], promos: CreatePromoModel[], partnerId: string); }