/** * Converts a numeric value to Biblical Hebrew words. * * @param {number | string | bigint} value - The numeric value to convert * @param {Object} [options] - Optional configuration * @param {('masculine'|'feminine')} [options.gender='masculine'] - Grammatical gender * @param {string} [options.andWord='ו'] - Custom conjunction word * @returns {string} The number in Biblical Hebrew words */ export function toCardinal(value: number | string | bigint, options?: { gender?: "masculine" | "feminine" | undefined; andWord?: string | undefined; }): string; /** * Converts a numeric value to Biblical Hebrew ordinal words. * * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The ordinal in Biblical 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 Biblical Hebrew Shekel currency words. * * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The currency in Biblical 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;