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

export * from './types'

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

export type HorSearchInstance = InstanceType<typeof HorSearch>

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