import { PromotionPlanTypes } from '../entities/promotion-plan.entity';
import { AvailableSection } from '../../discount/entities/discount.entity';
export declare class UpdatePromotionPlanDto {
    id: number;
    name: string;
    customerId: number;
    discountPercentage: number;
    discountAmount: number;
    validityDays: number;
    startDate: string | null;
    endDate: string | null;
    type: PromotionPlanTypes;
    section: AvailableSection;
}
