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

export * from './types'

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

export type HorLicensePlatePrefixInstance = InstanceType<typeof HorLicensePlatePrefix>

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