import { TDateArray } from '../../../Calendar';
import { IDisabledDateSettings } from '../types/IDisableDateSettings.model';
import { IDateWithExternalState } from '../types/IExternalMonthWithDays.model';
export type TCreateDaysOfMonth = {
    monthIdx: number;
    year: number;
    selectedDates: TDateArray;
    disabledDateSetting?: IDisabledDateSettings;
    isRangePicking?: boolean;
    externalMonthWithDays?: IDateWithExternalState[];
    fillAdjacentMonths?: boolean;
    weekStartsOn?: number;
};
