/**
 * 判断是否为身份证号
 * @category Validate
 * @param str
 */
declare function isIdCard(str: string): boolean;
export default isIdCard;
