import { ComponentPublicInstance } from 'vue'; import { LoadingPropsType } from './loading'; /** * @description: 创建实例并塞入自定义props和slots */ export declare const initInstance: (customProps: Partial, customSlots?: Record) => ComponentPublicInstance; /** * @description: createLoading对象 */ declare const createLoading: { /** * @description: show * @param {LoadingPropsType} options * @return {*} */ show: (customProps?: Partial, customSlots?: Record) => void; /** * @description: hide * @param {*} * @return {*} */ hide: () => void; }; export default createLoading;