import { USEShow } from './types'; import { Ref } from 'vue'; /** * 操作 */ export declare const useShow: ({ visible }: USEShow.Option) => { isShowMask: Ref; isShow: Ref; hideMask: () => void; animationDuration: number; };