import { AvailableSection } from '../entities/discount.entity';
export declare class CreateDiscountDto {
    name: string;
    customerId: number;
    userId: string;
    discountPercentage: number;
    discountAmount: number;
    couponCode?: string;
    countCouponCode: number;
    startDate?: Date;
    endDate?: Date;
    section: AvailableSection;
    promotionPlanId?: number | null;
}
