import { LmFormContainerBaseTypes } from '../../form/formContainerTypes'; import { OnDatesChangeProps, UseMonthProps } from '@datepicker-react/hooks'; export type LmDatepickerProps = LmFormContainerBaseTypes & { startDate?: Date | null; endDate?: Date | null; numberOfMonths?: number; isRangePicker?: boolean; onChange?: (data: OnDatesChangeProps) => void; labelFunctions?: Pick; }; //# sourceMappingURL=datepickerTypes.d.ts.map