import { BaseChangeDetail, BaseInputProps } from '../../../input/internal';
import { InternalInputProps } from '../../../input/internal';
import { BaseComponentProps } from '../../base-component';
import { FormFieldValidationControlProps } from '../../context/form-field-context';
export interface DateInputProps extends BaseInputProps, InternalInputProps, FormFieldValidationControlProps, BaseComponentProps {
    disableAutocompleteOnBlur?: boolean;
}
export declare namespace DateInputProps {
    type ChangeDetail = BaseChangeDetail;
    interface Ref {
        focus(): void;
    }
}
