import { Ref } from "vue";
export declare function useCarouselAutoPlay(props: any, isHovering: Ref<boolean>, next: () => void): {
    startAutoPlay: () => void;
    stopAutoPlay: () => void;
    handleMouseEnter: () => void;
    handleMouseLeave: () => void;
};
