/**
 * 校验是否是车牌号
 * @param v 车牌号
 */
declare function isLicenseCode(v: string): boolean;

export { isLicenseCode };
