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

export * from './types'

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

export type HorCheckboxInstance = InstanceType<typeof HorCheckbox>

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