import type { FC } from 'react'; import { type TimeInputProps } from '../TimeInput'; export type InlineEditTimeProps = Omit; /** * Commits on blur — time pickers have no discrete "selection complete" event. * Safe because the time dropdown is rendered inline (absolute, non-portaled) * and its rows preventDefault() on mousedown, so focus never leaves the * control subtree; a future portaled TimeDropdown would need re-evaluation. * Clipping ancestors need `overflow-visible` (automatic inside * AttributeValue; standalone hosts own it). */ export declare const InlineEditTime: FC;