import React from "react"; interface DatePickerProps { clearable?: boolean; disabled?: boolean; value?: Date; onChange?: (value: any) => void; minDate?: Date; maxDate?: Date; renderView: (inputProps: React.HtmlHTMLAttributes, clearButtonProps: React.ButtonHTMLAttributes) => any; } declare const DatePicker: (props: DatePickerProps) => JSX.Element; export default DatePicker;