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

export * from './types'

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

export type HorTimePickerInstance = InstanceType<typeof HorTimePicker>

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