export declare class EventUpdateEntity { id: string; status?: string; static toEventUpdateDto(entity: EventUpdateEntity): EventUpdateDto; } export declare class EventUpdateDto { id: string; status?: string; }