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