export default DateInput;
declare class DateInput extends React.PureComponent<any, any, any> {
    static displayName: string;
    constructor(props: any);
    state: {
        validationType: string;
        inputValue: string;
        statusMessage: undefined;
    };
    componentDidMount(): void;
    componentDidUpdate(prevProps: any): void;
    _getFormattedDate: (value: any) => string;
    _handleBlur: () => void;
    _handleChange: (event: any) => void;
    _handleValidation: (date: any) => void;
    _handleClear: (event: any) => void;
    _handleKeyDown: (event: any) => void;
    _getLocale(): any;
    render(): React.DetailedReactHTMLElement<any, HTMLElement>;
}
declare namespace DateInput {
    export { WixStyleReactEnvironmentContext as contextType };
    export let propTypes: any;
}
import React from 'react';
import { WixStyleReactEnvironmentContext } from '../../WixStyleReactEnvironmentProvider/context';
//# sourceMappingURL=DateInput.d.ts.map