import React from 'react'; import { ErrorType } from "./Input"; export type TimePickerProps = ErrorType & { id: string; label?: string; inputCaption?: string; required?: boolean; initialDate?: Date; timeInterval?: number; onChange?: (date: Date) => void; className?: string; appendClassName?: string; isClearable?: boolean; style?: React.CSSProperties; }; export declare const TimePicker: ({ id, label, required, initialDate, timeInterval, inputCaption, className, appendClassName, onChange, isClearable, error, errorClassName, style }: TimePickerProps) => import('./react/jsx-runtime.js').JSX.Element;