import { CalendarProps } from '../interfaces'; export declare function moveNextMonth(startDate: Date, isDateFocusable: CalendarProps.IsDateEnabledFunction): Date; export declare function movePrevMonth(startDate: Date, isDateFocusable: CalendarProps.IsDateEnabledFunction): Date; export declare function moveMonthDown(startDate: Date, isDateFocusable: CalendarProps.IsDateEnabledFunction): Date; export declare function moveMonthUp(startDate: Date, isDateFocusable: CalendarProps.IsDateEnabledFunction): Date; export declare function getBaseMonth(date: Date, isDateFocusable: CalendarProps.IsDateEnabledFunction): Date; export declare function moveMonth(startDate: Date, isDateFocusable: CalendarProps.IsDateEnabledFunction, step: number): Date;