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

export * from './types'

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

export type HorInputInstance = InstanceType<typeof HorInput>

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