import { RefObject } from "react"; import type { JBCalendarEventType, JBCalendarWebComponent } from 'jb-calendar'; export type EventProps = { onSelect?: (e: JBCalendarEventType) => void; }; export declare function useEvents(element: RefObject, props: EventProps): void;