import { NinEntity, NinType } from '../types';
/**
 * Returns a random valid nin of the given type for the given date
 *
 * @param date
 * @param type
 */
export declare function getRandomNinForDate(date: Date, type?: NinType): NinEntity;
