import { NinEntity } from '../types';
/**
 * Parses the birthdate from the given nin entity
 *
 * @param ninEntity
 */
export declare function getBirthDateFromNinEntity(ninEntity: NinEntity): Date;
/**
 * Parses the day of the birthdate from the given nin entity
 *
 * @param ninEntity
 */
export declare function getDayFromNinEntity(ninEntity: NinEntity): number;
/**
 * Parses the month of the birthdate from the given nin entity
 *
 * @param ninEntity
 */
export declare function getMonthFromNinEntity(ninEntity: NinEntity): number;
/**
 * Parses the year of the birthdate from the given nin entity
 *
 * @param ninEntity
 */
export declare function getYearFromNinEntity(ninEntity: NinEntity): number;
/**
 * Parses the year of the birthdate from the given nin
 *
 * @param nin
 */
export declare function getYearFromNin(nin: string): number;
