import { type ChangeEventHandler, type CSSProperties, type InputHTMLAttributes, type ReactNode, type Ref } from 'react'; type ClockTimeInputProps = Omit, 'children' | 'className' | 'defaultValue' | 'onChange' | 'style' | 'type' | 'value'> & { value?: string; defaultValue?: string; label?: ReactNode; className?: string; inputClassName?: string; style?: CSSProperties; onChange?: ChangeEventHandler; onValueChange?: (value: string) => void; ref?: Ref; }; declare const ClockTimeInput: ({ value, defaultValue, label, className, inputClassName, style, onChange, onInput, onValueChange, id, disabled, ref, "aria-label": ariaLabel, "aria-labelledby": ariaLabelledBy, ...inputProps }: ClockTimeInputProps) => import("react/jsx-runtime").JSX.Element; export { ClockTimeInput }; export type { ClockTimeInputProps };