import { Ref } from 'vue'; import { Dayjs } from 'dayjs'; import { TimePickerProps } from '../../time-picker/interface'; interface TimePickerValueProps { timePickerProps: Partial | undefined; selectedValue: Dayjs | undefined; } export default function useTimePickerValue(props: TimePickerValueProps): [Ref, (val: Dayjs | undefined) => void, () => void]; export {};