export interface DateInputItemsProps { /** * Day part of the date, entered by the user. We can't guarantee at the type level * that it will be a number from 1-31. */ day: string; /** * Month part of the date, entered by the user. * Keep in mind that this is the JS date month, so January is '0'. */ month: string; /** * Year part of the date, entered by the user. */ year: string; onChange: (event: React.ChangeEvent) => void; onBlur?: (event: React.FocusEvent) => void; isReadOnly?: boolean; isInvalid?: boolean; autoComplete?: string; 'aria-describedby'?: string; } declare const DateInputItems: React.FC; export default DateInputItems;