import React__default from 'react'; import { Matcher } from 'react-day-picker'; interface FormDatePickerProps { id?: string; name: string; label?: string; required?: boolean; disabled?: Matcher | Matcher[]; initialValue?: Date | string; closeOnSelect?: boolean; value?: Date | string; onChange: (value?: Date) => void; classNames?: { wrapper?: string; label?: string; button?: string; }; } declare function FormDatePicker({ id, name, label, required, closeOnSelect, disabled, initialValue, value, onChange, classNames, }: FormDatePickerProps): React__default.JSX.Element; export { FormDatePicker, type FormDatePickerProps };