import { ScheduleEventStatus, ScheduleEventType } from "./create-schedule-event.dto";
export declare class UpdateScheduleEventDto {
    title?: string;
    type?: ScheduleEventType;
    customerId?: string;
    equipmentId?: string;
    startDate?: string;
    endDate?: string;
    location?: string;
    technician?: string;
    notes?: string;
    status?: ScheduleEventStatus;
}
