import Component from './hor-tag-select.vue'
import { withInstall } from '../utils'

export * from './types'

export const HorTagSelect = withInstall<typeof Component>(Component)
export default HorTagSelect

export type HorTagSelectInstance = InstanceType<typeof HorTagSelect>

declare module 'vue' {
  export interface GlobalComponents {
    HorTagSelect: typeof HorTagSelect
  }
}
