/** * Converts a numeric value to Hungarian words. * * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The number in Hungarian words */ export function toCardinal(value: number | string | bigint): string; /** * Converts a numeric value to Hungarian 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) // 'első' * toOrdinal(2) // 'második' * toOrdinal(21) // 'huszonegyedik' */ export function toOrdinal(value: number | string | bigint): string; /** * Converts a numeric value to Hungarian currency words (Hungarian Forint). * * Uses forint (no plural form needed in Hungarian). * Fillér (1/100) is rarely used but included for completeness. * * @param {number | string | bigint} value - The currency amount to convert * @returns {string} The amount in Hungarian 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) // 'negyvenkettő forint' * toCurrency(1.50) // 'egy forint ötven fillér' * toCurrency(-5) // 'mínusz öt forint' */ export function toCurrency(value: number | string | bigint): string;