import { Ref } from 'vue';
export declare function usePlayer(activeIndex: Ref<number>, images: any, imageRef: Ref<HTMLImageElement | null>, callBack: Function | undefined, playSpeed: number): {
    timer: Ref<any>;
    scrollItemNavRef: Ref<any>;
    playState: Ref<any>;
    autoPlay: () => void;
    stopPlay: () => void;
    hotKeyAutoPlay: () => void;
};
