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

export * from './types'

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

export type HorScrollInstance = InstanceType<typeof HorScroll>

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