import { Component } from 'react'; import { IDateInputProps } from './DateInputProps'; /** * A masked date entry field with a drop down calendar. * All properties of MaskedInput apply. */ declare class DateInput extends Component { static defaultProps: { dropIcon: JSX.Element; size: string; a11yDropTitle: string; }; upDateValue: any; onSelect: (isoDate: any) => void; render(): JSX.Element; } export { DateInput };