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

export * from './types'

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

export type HorPopupInstance = InstanceType<typeof HorPopup>

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