/// <reference types="react" />
import "react-datepicker/dist/react-datepicker.css";
import { Control, FieldValues } from "react-hook-form";
import { IReactHookFormProps } from "../types";
interface IDateProps {
    control: Control<FieldValues, any>;
    name: string;
    showTimeSelect?: boolean;
    disabled?: boolean;
}
export declare const InputDate: ({ name, errors, control, validation, disabled, }: IDateProps & IReactHookFormProps) => JSX.Element;
export {};
