import { ModelRef, Ref } from 'vue'; import { ListItem, USEBtns } from './types'; /** * 显示 */ export declare const useShow: (visibleModel: ModelRef) => { isShowMask: Ref; isShow: Ref; hideMask: () => void; animationDuration: number; }; /** * 隐藏 */ export declare const useBtns: ({ emit, visibleModel }: USEBtns.Option) => { onLi: (item: ListItem) => void; onCancel: (e: MouseEvent) => void; };