/** * Converts a numeric value to Hindi words. * * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The number in Hindi words */ export function toCardinal(value: number | string | bigint): string; /** * Converts a numeric value to Hindi ordinal words. * * @param {number | string | bigint} value - The numeric value to convert (positive integer) * @returns {string} The number as ordinal words * @throws {TypeError} If value is not a valid numeric type * @throws {RangeError} If value is negative, zero, or has a decimal part * * @example * toOrdinal(1) // 'पहला' * toOrdinal(2) // 'दूसरा' * toOrdinal(3) // 'तीसरा' * toOrdinal(10) // 'दसवाँ' */ export function toOrdinal(value: number | string | bigint): string; /** * Converts a numeric value to Hindi currency words (Indian Rupee). * * @param {number | string | bigint} value - The currency amount to convert * @returns {string} The amount in Hindi currency words * @throws {TypeError} If value is not a valid numeric type * @throws {Error} If value is not a valid number format * * @example * toCurrency(42.50) // 'बयालीस रुपये पचास पैसे' * toCurrency(1) // 'एक रुपया' * toCurrency(0.01) // 'एक पैसा' */ export function toCurrency(value: number | string | bigint): string;