import { AnimationOptions } from "popmotion";
import { Ref } from "vue";
type ToVal = number | Array<number>;
type Options = AnimationOptions<number> & {
    from: number;
    to: ToVal | Ref<ToVal>;
    duration?: number;
    stopped?: boolean | Ref<boolean>;
    step?: (value: number) => void;
};
declare const _default: ({ from, to, duration, stopped, step, ...options }: Options) => any;
export default _default;
