import { RangePickerTriggerProps } from '../Picker'; import { TimeRangePickerValue } from './useTimeRangePickerValue'; import { TimePickerPanelProps } from '../TimePicker/TimePickerPanel'; export interface TimeRangePickerProps extends Pick, Pick { /** * The format for displaying time. * @default 'HH:mm:ss' or 'HH:mm' based on hideSecond */ format?: string; /** * A function that fires when panel toggle. Receive open status in boolean format as props. */ onPanelToggle?: (open: boolean) => void; /** * Change handler. Takes an array of your declared `DateType` which represents from and to in order. */ onChange?: (target?: TimeRangePickerValue) => void; /** * Value of the range picker. * It is an array of your declared `DateType` which represents from and to in order. */ value?: TimeRangePickerValue; } /** * The react component for `mezzanine` time range picker. * Notice that any component related to time-range-picker should be used along with `CalendarContext`. */ declare const TimeRangePicker: import("react").ForwardRefExoticComponent>; export default TimeRangePicker;