import { DayPickerProps } from "react-day-picker"; import React from "react"; import "moment/locale/ko"; declare type IProps = { from?: Date | null; to?: Date | null; isRange?: boolean; readOnly?: boolean; canSelectSameDate?: boolean; format?: string; label?: string; showInputIcon: boolean; placeholder?: string; inputClassName?: string; displayYear?: boolean; dayPickerProps: DayPickerProps; inputComponent?: any; disabled?: boolean; }; declare const JDdayPickerInput: React.FC; export default JDdayPickerInput;