import { Dayjs } from 'dayjs'; import { TimeValue } from '../interface'; export default function useTimeState(props: { modelValue: TimeValue | TimeValue[] | undefined; defaultValue: TimeValue | TimeValue[] | undefined; format: string; isRange: boolean; }): { computedValue: import("vue").ComputedRef; panelValue: import("vue").Ref; inputValue: import("vue").Ref; setValue: (newValue: Dayjs | (Dayjs | undefined)[] | undefined) => void; setPanelValue: (newValue: Dayjs | (Dayjs | undefined)[] | undefined) => void; setInputValue: (newValue: string | (string | undefined)[] | undefined) => void; };