import React from "react"; import "react-dates/initialize"; import moment from "moment"; export interface DatePickerProps { hasArrowIcon?: boolean; startDate: moment.Moment | null; endDate: moment.Moment | null; focusedInput: "startDate" | "endDate" | null; setFocusedInput: (event: "startDate" | "endDate" | null) => void; setStartDate: (date: moment.Moment | null) => void; setEndDate: (date: moment.Moment | null) => void; startDateId: string; endDateId: string; startDatePlaceholderText?: string; endDatePlaceholderText?: string; disabled?: boolean; color?: string; required?: boolean; numberOfMonths?: number; inputIconPosition?: "before" | "after"; orientation?: "horizontal" | "vertical"; customInputIcon?: React.ReactElement>; customArrowIcon?: React.ReactElement>; customCloseIcon?: React.ReactElement>; } declare const DatePicker: ({ color, setStartDate, setEndDate, setFocusedInput, hasArrowIcon, numberOfMonths, ...rest }: DatePickerProps) => React.JSX.Element; export default DatePicker;