/** * Checks if the given ID number is valid according to the Iranian national ID number format. * @param {string} id - the ID number to check * @returns {boolean} - true if the ID number is valid, false otherwise */ export declare const CheckIdNumber: (id: string) => boolean;