import { TIMEPICKER_SIZE_CONFIG, clampTimePart, formatTimeDisplay, formatTimeValue, parseTimeValue, type STimePickerMeridiem, type STimePickerSize, type STimePickerType } from '../STimePicker/timepicker.config'; export type STimeRangePickerSize = STimePickerSize; export type STimeRangePickerType = STimePickerType; export type STimeRangePickerMeridiem = STimePickerMeridiem; export type STimeRangePickerRangeOrder = 'strict' | 'allow-cross-day'; export type STimeRangeValue = [string, string] | null; export { TIMEPICKER_SIZE_CONFIG as TIME_RANGE_PICKER_SIZE_CONFIG, clampTimePart, formatTimeDisplay, formatTimeValue, parseTimeValue, }; export declare function normalizeTimeRangeValue(value: STimeRangeValue, rangeOrder?: STimeRangePickerRangeOrder): STimeRangeValue; export declare function formatTimeRangeDisplay(value: STimeRangeValue, type: STimeRangePickerType): string;