import React from "react"; import type { ControlledFormValue } from "../../internal/type"; export interface Props extends ControlledFormValue { allowNull: T; disabled?: boolean; placeholder?: string; className?: string; preserveInvalidOnBlur?: boolean; } export declare const DatePicker: (props: Props) => React.JSX.Element;