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

export * from './types'

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

export type HorRadioButtonInstance = InstanceType<typeof HorRadioButton>

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