import type { GenerateConfig } from "../../generate/index.mjs"; import type { InternalMode, Locale, PanelMode } from "../../interface.mjs"; import type { RangePickerProps } from "../RangePicker.mjs"; export declare function offsetPanelDate(generateConfig: GenerateConfig, picker: InternalMode, date: DateType, offset: number): DateType; export default function useRangePickerValue(generateConfig: GenerateConfig, locale: Locale, calendarValue: ValueType, modes: PanelMode[], open: boolean, preserveOnFieldChange: boolean, activeIndex: number, pickerMode: InternalMode, multiplePanel: boolean, defaultPickerValue?: ValueType, pickerValue?: ValueType, timeDefaultValue?: ValueType, onPickerValueChange?: RangePickerProps['onPickerValueChange'], minDate?: DateType, maxDate?: DateType): [currentIndexPickerValue: DateType, setCurrentIndexPickerValue: (value: DateType) => void];