import { DHIS2Event } from '../models'; export declare class EventUtil { static getEvents(eventList: Record): DHIS2Event[]; static sortEvents(eventList: DHIS2Event[], sortOrder?: 'DESC' | 'ASC'): DHIS2Event[]; static generateEvent(params: { program: string; programStage: string; orgUnit: string; eventId?: string; enrollment?: string; trackedEntity?: string; eventDate?: string; }): DHIS2Event; static getEventByStage(events: DHIS2Event[], programStage: string): DHIS2Event | undefined; static getEventById(events: DHIS2Event[], eventId: string): DHIS2Event | undefined; }