/** * Converts a numeric value to Modern Hebrew words. * * @param {number | string | bigint} value - The numeric value to convert * @param {Object} [options] - Optional configuration * @param {string} [options.andWord='ו'] - Custom conjunction word * @returns {string} The number in Modern Hebrew words */ export function toCardinal(value: number | string | bigint, options?: { andWord?: string | undefined; }): string; /** * Converts a numeric value to Hebrew ordinal words. * * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The ordinal in Hebrew words * @throws {TypeError} If value is not a valid numeric type * @throws {Error} If value is not a positive integer * * @example * toOrdinal(1) // 'ראשון' * toOrdinal(21) // 'עשרים וראשון' */ export function toOrdinal(value: number | string | bigint): string; /** * Converts a numeric value to Hebrew New Israeli Shekel currency words. * * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The currency in Hebrew words * @throws {TypeError} If value is not a valid numeric type * @throws {Error} If value is not a valid number format * * @example * toCurrency(1) // 'שקל אחד' * toCurrency(2.50) // 'שניים שקלים חמישים אגורות' */ export function toCurrency(value: number | string | bigint): string;