export declare type TCalendarCell = { dayInWeek: number; dayID: number; day: number; month: number; year: number; }; export declare type ICalendarDateParams = { day: number; month: number; year: number; }; export declare type TCalendarMY = Omit; export declare type TIntRangeCalendarCollection = [Date | null, Date | null]; export declare type TIntCalendarInput = TIntRangeCalendarCollection | null; export declare type TIntCalendarOutput = TIntRangeCalendarCollection | Date; export declare type TDatePickerInput = TIntCalendarInput | Date;