import { parseRRule, isSameRRule } from "../utils/recurring-events/rRuleString.mjs"; import { projectRRuleToTimezone } from "../utils/recurring-events/projectRRuleToTimezone.mjs"; import { getRecurringEventOccurrencesForVisibleDays } from "../utils/recurring-events/getRecurringEventOccurrencesForVisibleDays.mjs"; import { updateRecurringEvent } from "../utils/recurring-events/updateRecurringEvent.mjs"; import { applyDataTimezoneToEventUpdate } from "../utils/recurring-events/applyDataTimezoneToEventUpdate.mjs"; import { computePresets, getDefaultPresetKey, getWeeklyDays, getMonthlyReference } from "../utils/recurring-events/presets.mjs"; export declare const schedulerRecurringEventsPlugin: { readonly parseRRule: typeof parseRRule; readonly projectRRuleToTimezone: typeof projectRRuleToTimezone; readonly getOccurrencesForVisibleDays: typeof getRecurringEventOccurrencesForVisibleDays; readonly updateRecurringEvent: typeof updateRecurringEvent; readonly applyDataTimezoneToEventUpdate: typeof applyDataTimezoneToEventUpdate; readonly computePresets: typeof computePresets; readonly getDefaultPresetKey: typeof getDefaultPresetKey; readonly isSameRRule: typeof isSameRRule; readonly getWeeklyDays: typeof getWeeklyDays; readonly getMonthlyReference: typeof getMonthlyReference; };