import React from 'react'; import { IProps } from './index'; export interface IFormProps extends IProps { name: string; onClear?: (val: string) => void; required?: boolean; setValue?: (val1: string, val2: string) => void; } export declare const FormTimeInput: ({ ...props }: IFormProps & React.InputHTMLAttributes) => JSX.Element;