import { CalendarProps } from './calendar.types'; /** * The `Calendar` component displays one date grid and allows users to select a single date. * Using the `defaultFocusedValue` or`focusedValue`, the developer can set the focused date * if not provided the current date will be focused. * * ### Usage * * ```tsx * import { Calendar } from '@bloomreach/react-banana-ui'; * * export default function MyCalendar() { * return ( * console.log(date)} // Handle the date change * /> * ); * } * ``` */ declare const Calendar: import('react').ForwardRefExoticComponent>; export default Calendar;