/** * Converts a numeric value to Telugu words. * * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The number in Telugu words */ export function toCardinal(value: number | string | bigint): string; /** * Converts a numeric value to Telugu 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(10) // 'పదివ' */ export function toOrdinal(value: number | string | bigint): string; /** * Converts a numeric value to Telugu currency words (Indian Rupee). * * @param {number | string | bigint} value - The currency amount to convert * @returns {string} The amount in Telugu 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;