/** * 判断是否为身份证 * @param str 字符串 * @returns 是否为身份证 * @see {@link https://yourhhh.github.io/zztoolDocument} API 文档 * @example * // 调用示例 * regIdcard('3301031110DF001011234'); // false */ export declare function regIdcard(str: string): boolean;