/**
 * 身份证号码加 *
 * 430421202312121234 => 430421********1234
 */
declare function filterIdCard(val: string): string;

export { filterIdCard };
