import React from "react"; import moment, { Moment } from "moment"; export interface DatePickerProps { id: string; date: moment.Moment | null; onDateChange: (date: moment.Moment | null) => void; onFocusChange: (arg: boolean | null) => void; focused: boolean | null; placeholder?: string; disabled?: boolean; color?: string; required?: boolean; numberOfMonths?: number; inputIconPosition?: "before" | "after"; orientation?: "horizontal" | "vertical"; customInputIcon?: React.ReactElement>; customCloseIcon?: React.ReactElement>; displayFormat?: string; error?: boolean; label?: string; width?: string; isOutsideRange?: (day: Moment) => boolean; renderCalendarInfo?: () => string | JSX.Element; calendarInfoPosition?: "before" | "after" | "top" | "bottom"; navPrev?: string | JSX.Element; navNext?: string | JSX.Element; showDefaultInputIcon?: boolean; startYear?: number; endYear?: number; } declare const CustomHeaderSingleDatePicker: ({ width, color, onDateChange, onFocusChange, numberOfMonths, error, label, focused, startYear, endYear, ...rest }: DatePickerProps) => React.JSX.Element; export default CustomHeaderSingleDatePicker;