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

export * from './types'

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

export type HorCellGroupInstance = InstanceType<typeof HorCellGroup>

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