import React from "react"; import type { ControlledFormValue } from "../../internal/type"; export interface Props extends ControlledFormValue { allowNull: T; disabled?: boolean; className?: string; placeholder?: string; showNow?: boolean; disabledRange?: (diffHourToToday: number, date: Date) => boolean; preserveInvalidOnBlur?: boolean; showSecond?: boolean; } export declare const DateTimePicker: (props: Props) => React.JSX.Element;