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