import Vue, { PluginFunction, VueConstructor } from 'vue'; interface InstallFunction extends PluginFunction { installed?: boolean; } export interface InstallableComponent extends VueConstructor { install: InstallFunction; } declare const VueHorizontal: InstallableComponent; export default VueHorizontal;