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

export * from './types'

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

export type HorSelectPopupInstance = InstanceType<typeof HorSelectPopup>

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