import { DatePart } from '../types'; export interface DatePartInputProps { name: DatePart; value: string; onChange: (event: React.ChangeEvent) => void; onBlur?: (event: React.FocusEvent) => void; isReadOnly?: boolean; autoComplete?: string; isInvalid?: boolean; 'aria-describedby'?: string; } /** * An input element for a single part of a date in a split input group. * * This components covers all three parts of a date: day, month and year. Note that if * for the parent date field the autocmplete 'bday' is given, it will be translated into * the individual autocomplete properties (bday-day, bday-month and bday-year). */ declare const DatePartInput: React.FC; export default DatePartInput;