import { SchedulerState as State } from "../internals/utils/SchedulerStore/SchedulerStore.types.js"; export declare const schedulerOtherSelectors: { /** * Returns `true` if the occurrence with the given key is the currently active occurrence. */ isEditedOccurrence: (args_0: State, occurrenceKey: string | undefined) => boolean; visibleDate: (args_0: State) => Date; isRecurringScopeDialogOpen: (state: State) => boolean; /** * The default event color used when no color is specified on the event or its resource. */ defaultEventColor: (state: State) => import("../models/index.js").SchedulerEventColor; displayTimezone: (state: State) => string; /** * Whether each event must be assigned to a resource. When true, the resource cannot be cleared in the edit dialog and the form cannot be submitted without one. */ shouldEventRequireResource: (state: State) => boolean; recurringEventsPlugin: (state: State) => import("../internals/index.js").SchedulerRecurringEventsPluginInterface | null; areRecurringEventsAvailable: (state: State) => boolean; isLoading: (state: State) => boolean; errors: (state: State) => readonly import("../internals/index.js").StoredError[]; };