import { TimeValue } from 'react-aria-components'; import { TimePickerGranularity, TimePickerProps } from '../TimePicker.types'; export declare const useTimePickerValue: (params: { value: TimePickerProps["value"] | undefined; onChange: NonNullable; granularity: TimePickerGranularity; }) => { timeValue: TimeValue | null; handleChange: (next: TimeValue | null) => void; hasValue: boolean; };