import * as React from "react"; import type { TimeRangePickerProp } from "../../props/components/data-entry.prop.js"; export type { TimeRangePickerProp, TimeRangePickerProp as TimeRangePickerProps, } from "../../props/components/data-entry.prop.js"; /** A range owns ordering and partial endpoints; the time controls own editing and constraints. */ export declare function TimeRangePicker({ value: controlledValue, defaultValue, onValueChange, order, open: openProp, defaultOpen, onOpenChange, allowEmpty, name, id, placeholder, className, ref, ...props }: TimeRangePickerProp): React.JSX.Element;