/** * 是否为有效的中国邮政编码 * @param {string} val - 待验证的邮政编码 * @returns {boolean} 是否为有效的中国邮政编码 * @example * isValidZipcode('330561'); * // => true */ export declare function isValidZipcode(val: string): boolean;