import { IUseCalendarData } from './IHooks/IUseCalendarData';
export declare namespace ICalendar {
interface IProps {
onChange?: (date: IUseCalendarData.IDates) => void;
calendarType?: calendarType;
showExtra?: boolean;
}
type calendarType = 'AD' | 'BS';
}