import * as React from 'react'; import { SchedulerEvent, TemporalSupportedObject } from "../../models/index.js"; export declare function useDayCellDropTarget(parameters: useDayCellDropTarget.Parameters): React.RefObject; export declare namespace useDayCellDropTarget { interface Parameters { /** * The value of the cell. */ value: TemporalSupportedObject; /** * Add properties to the event dropped in the cell before storing it in the store. */ addPropertiesToDroppedEvent?: () => Partial; } }