declare module 'vue-fragment' { import Vue, { AsyncComponent, ComponentOptions, PluginObject } from 'vue'; type Component = ComponentOptions | typeof Vue | AsyncComponent; export const Fragment: Component; export const Plugin: PluginObject; namespace VueFragment { export const Fragment: Component; export const Plugin: PluginObject; } export default VueFragment; }