import React from "react";
import { CalendarType } from "../types/main";
export declare const CalendarTypeProvider: React.FC<{
    children: React.ReactNode;
    initialCalendarType?: CalendarType;
}>;
export declare function useCalendarType(): {
    calendarType: CalendarType;
    setCalendarType: (calendarType: CalendarType) => void;
};
export declare function useCalendarTypeWithInitial(calendarTypeFromProps?: CalendarType): CalendarType;
