import type { Dayjs } from 'dayjs'; interface DatePickerProps { valueString: string; readOnly: boolean; anchorEl: HTMLElement | null; onSelectDate: (newValueDayjs: Dayjs) => void; onFocus: (focus: boolean) => void; } declare function DatePicker(props: DatePickerProps): import("react/jsx-runtime").JSX.Element; export default DatePicker;