/** * Converts a numeric value to Amharic (Latin script) words. * * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The number in Amharic Latin words */ export function toCardinal(value: number | string | bigint): string; /** * Converts a numeric value to Amharic (Latin script) 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) // 'andenya' * toOrdinal(2) // 'huletnya' * toOrdinal(10) // 'asirnya' */ export function toOrdinal(value: number | string | bigint): string; /** * Converts a numeric value to Amharic (Latin script) currency words (Ethiopian Birr). * * @param {number | string | bigint} value - The currency amount to convert * @returns {string} The amount in Amharic (Latin) 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) // 'arba hulet birr hamsa santim' * toCurrency(1) // 'and birr' * toCurrency(0.01) // 'and santim' */ export function toCurrency(value: number | string | bigint): string;