import type { TemporalSupportedObject, TemporalTimezone } from "../base-ui-copy/types/index.mjs"; import type { Adapter } from "../use-adapter/index.mjs"; import type { SchedulerEventId } from "../models/index.mjs"; /** * Resolves an event date string to a `TemporalSupportedObject`. * * - Strings ending with `"Z"` are treated as instants (UTC). * - Strings without `"Z"` are treated as wall-time and interpreted in `dataTimezone`. */ export declare function resolveEventDate(value: string, dataTimezone: TemporalTimezone, adapter: Adapter, eventId?: SchedulerEventId): TemporalSupportedObject;