import { YLModalState, YLModalPageState } from "./useYLModal"; import Vue from "vue"; import { Store } from "vuex"; /** * @deprecated 改为全局混入(mixin) {@link YLModalMixin} * * `yl-modal` 组件页面行为 `mixin`,包含 `yl-modal` 组件 * 的页面都可以使用,决定 `yl-modal` 组件在页面中的一些行为, * 具体请查看 {@link ModalMixinOptions} * @param store Vuex store * @param storePath `yl-modal` 组件对应 Vuex store 的模组路径 */ export declare function useYLModalMixin(store: Store, storePath?: string): import("vue/types/vue").ExtendedVue>;