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

export * from './types'

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

export type HorTreeSelectPopupInstance = InstanceType<typeof HorTreeSelectPopup>

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