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

export * from './types'

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

export type HorSortBarInstance = InstanceType<typeof HorSortBar>

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