import { SchedulerEventOccurrence } from "../models/index.js"; /** * Sorts event occurrences by their start date (earliest first). * If two occurrences have the same start date, the one with the later end date comes first. */ export declare function sortEventOccurrences(occurrences: readonly SchedulerEventOccurrence[]): SchedulerEventOccurrence[];