import { ColorType } from '.'; interface CommonDatePickerColorStyleProps { disabledTextColor: string; focusedTextColor: string; hoverContainerColor: string; textColor: string; } export type DatepickerColorStyleProps = CommonDatePickerColorStyleProps & { focusedContainerColor: string; rangeContainerColor: string; }; declare const datepickerColorStyle: (colorType: ColorType) => DatepickerColorStyleProps; export default datepickerColorStyle; //# sourceMappingURL=datepicker.d.ts.map