/// <reference types="react" />
import { ComponentBaseProps } from '../core';
import { InputProps } from './Input';
export interface InputTimeProps extends InputProps, ComponentBaseProps {
    format?: string;
    onChange(date: Date | null): void;
    value?: Date | null;
}
export declare const InputTime: import("react").ForwardRefExoticComponent<Omit<InputTimeProps, "ref"> & import("react").RefAttributes<HTMLInputElement>>;
