import { YLModalPageState } from "./useYLModal"; import Vue from "vue"; /** 全局 `YLModalMixin` data类型 */ export type YLModalMixinData = { /** 是否正在使用全局 `YLModalMixin` */ hasYlModalMixin: true; /** 当前页面全局弹框名称数组 */ ylModalNames: string[] | undefined | null; }; export declare const YLModalMixin: import("vue/types/vue").ExtendedVue>;