import * as React from 'react'; import { SchedulerEventCreationConfig, SchedulerOccurrencePlaceholderCreation } from "../../models/index.mjs"; interface GetCreationPlaceholderParams { event: React.MouseEvent; creationConfig: SchedulerEventCreationConfig; } export type CreationPlaceholderFields = Omit; export declare function useEventCreation(getCreationPlaceholder: (params: GetCreationPlaceholderParams) => CreationPlaceholderFields): Record>>; export {};