import * as React from "react"; import type { TimePickerProp } from "../../props/components/data-entry.prop.js"; export type { TimePickerDisabledTimeProp, TimePickerProp, TimePickerProp as TimePickerProps, } from "../../props/components/data-entry.prop.js"; /** * TimePicker — WAI-ARIA time combobox. The value lives on a real, typeable `HH:mm` `` (24h * canonical): form-submittable (give it a `name`), screen-reader friendly, and e2e-testable by * filling the input. */ export declare function TimePicker({ value: controlledValue, defaultValue, onValueChange, placeholder, disabled, className, id, name, minuteStep, hourStep, changeOnScroll, secondStep, showSeconds: showSecondsProp, use12Hours, format, open: openProp, defaultOpen, onOpenChange, inputReadOnly, width, preserveInvalidOnBlur, placement, renderExtraFooter, size, status, variant, ref, disabledTime, hideDisabledOptions, showNow, needConfirm, allowClear, ...ariaProps }: TimePickerProp): React.JSX.Element;