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