import React from 'react'; declare type Props = { 'data-qa'?: string; autoFocus?: boolean; disabled?: boolean; hint?: string; id?: string; invalidDateMessage?: string; label?: string; maxDate?: Date | null; maxDateMessage?: string; minDate?: Date | null; minDateMessage?: string; name?: string; placeholder?: string; state?: 'active' | 'negative'; value?: Date | null; onBlur?: () => void; onChange?: (date: Date, value?: string) => void; style?: object; }; declare const DatePicker: React.FC; export default DatePicker;