type CalendarItemProps = { title?: string; description?: string; color?: 'neutral' | 'green' | 'purple' | 'orange' | 'red'; position?: 'start' | 'middle' | 'end'; repeating?: boolean; onClick?: () => void; forceHover?: boolean; onHoverChange?: (hover: boolean) => void; }; declare function CalendarItem({ title, description, color, position, repeating, onClick, forceHover, onHoverChange, }: CalendarItemProps): import("react/jsx-runtime").JSX.Element; declare const MemoizedCalendarItem: import("react").MemoExoticComponent; export { MemoizedCalendarItem as CalendarItem }; export type { CalendarItemProps };