react-next-dates
Version:
Simple and Customizable DatePicker, DateRangePicker and TimePicker for React.
12 lines (11 loc) • 373 B
TypeScript
import { FC } from 'react';
import { CalendarType } from '../../../index';
interface CalendarNavigationProps {
locale: Locale;
month: Date;
mode: CalendarType;
onChangeMonth: (month: Date) => void;
onChangeMode: (mode: CalendarType) => void;
}
declare const CalendarNavigation: FC<CalendarNavigationProps>;
export default CalendarNavigation;