import type { SchedulerEvent, SchedulerProcessedEvent } from "../models/index.js"; import type { Adapter } from "../use-adapter/index.js"; import type { SchedulerRecurringEventsPluginInterface } from "../internals/plugins/SchedulerRecurringEventsPlugin.types.js"; import type { TemporalTimezone } from "../base-ui-copy/types/index.js"; export declare function processEvent(model: SchedulerEvent, displayTimezone: TemporalTimezone, adapter: Adapter, recurringEventsPlugin?: SchedulerRecurringEventsPluginInterface | null): SchedulerProcessedEvent;