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

export * from './types'

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

export type HorLicensePlateInstance = InstanceType<typeof HorLicensePlate>

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