import type { Ref } from 'vue'; import type { UseOffsetReturn } from './interface'; export * from './interface.d'; /** * slider 组件偏移量相关操作 * * @author Tyh2001 * @param { Object } el 小球元素节点 * @param { Object } step 步长 * @param { Function } emit 回调方法 * @returns { Object } 包括:偏移距离、距离左侧的偏移量、设置偏移量方法 */ export declare const useOffset: (el: Ref, prop: SliderProps, emit: (event: 'update:modelValue', val: number) => void) => UseOffsetReturn;