import { Ref } from 'vue'; import { ItemType, ShowAnimateEnum, OriginRectType } from '../types'; type useAnimationHandleReturn = { photoVisible: Ref; showAnimateType: Ref; originRect: Ref; onShowAnimateEnd: () => void; }; export default function useAnimationHandle(visible: Ref, currentItem: Ref): useAnimationHandleReturn; export {};