import React from 'react'; declare type DateControlProps = { onChange?: (e: React.FormEvent) => void; defaultValue?: any; value?: any; placeholder?: string; name?: string; errors?: any; dateFormat?: string; required?: boolean; timeFormat?: boolean; registerChild?: (child: any) => void; }; declare class DateControl extends React.Component { static defaultProps: { dateFormat: string; }; componentDidMount(): void; render(): JSX.Element; } export default DateControl; //# sourceMappingURL=DateControl.d.ts.map