import React from 'react'; import { TimePickerProps as BaseTimePickerProps } from '../../ui'; import { FormItemProps } from '../Item'; import { InputComponentWithName } from '../interfaces'; interface TimePickerProps extends Omit { } export declare type TimePickerInputProps = FormItemProps & { name: string; format: string; onChange?: (value: any) => void; } & TimePickerProps; export declare const TimePickerInput: InputComponentWithName>; export declare const parseValue: (value: string, format: string) => Date | null; export {};