import { default as React } from 'react'; import { YearsToShow } from '../types.js'; import { UseCalendarProps } from './useCalendar.js'; interface CalendarProps extends Omit { date: Date | null; defaultSelected?: Date; days?: string[]; months?: string[]; monthLabel?: string; yearLabel?: string; yearsToShow?: YearsToShow; onTabOutside: React.KeyboardEventHandler; } export declare const Calendar: React.ForwardRefExoticComponent>; export {};