import type { ComputedRef, SetupContext } from 'vue'; import type { SliderEmits, SliderProps } from '../props'; import type { SliderInitData } from '../interface'; type FormItemContext = any; export declare const useWatch: (props: SliderProps, initData: SliderInitData, minValue: ComputedRef, maxValue: ComputedRef, emit: SetupContext['emit'], elFormItem: FormItemContext) => any; export {};