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

export * from './types'

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

export type HorSelectPickerInstance = InstanceType<typeof HorSelectPicker>

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