import { Month } from '../types/types';
export declare function useCalendar(): {
    finalDaysArray: Month | undefined;
    currentMonthName: string;
    incrementMonth: () => void;
    decrementMonth: () => void;
};
