import * as React from 'react'; interface Props { /** Prev button click event */ onPrev?: () => void; /** Next button click event */ onNext?: () => void; /** Calenar Title Click Event */ onTitleClick?: () => void; /** Prev Icon show or Hide */ shouldShowPrevIcon?: boolean; /** Next icon show or hide */ shouldShowNextIcon?: boolean; /** Title to show in calendar */ title?: string; /** Custom prevIcon */ prevIcon?: React.ReactNode; /** Custom nextIcon */ nextIcon?: React.ReactNode; } declare const CalendarHead: React.FunctionComponent; export default CalendarHead;