export type TransitionDirection = 'forward' | 'backward'; export declare function useSmoothTransition(duration?: number, initialValue?: number): readonly [import("vue").Ref, (target: TransitionDirection | number, newDuration?: number) => void, () => void, import("vue").Ref];