import { Ref } from 'vue'; import { HandleShowType, ItemType } from '../types'; type useVisibleReturn = { visible: Ref; handleHide: () => void; handleShow: HandleShowType; }; export default function useVisible(items: Ref, index: Ref, onVisibleChange: () => void): useVisibleReturn; export {};