/**
 * Convert the number into Indian rupees
 * @param num {number} Number to be converted
 * @returns {string} Indian Rupees
 */
declare const numberTwoRupee: (num: number) => string;
export default numberTwoRupee;
