import { Aliyah } from './types.js'; /** * Converts a `chapter:verse` string to Hebrew numerals (gematriya), e.g. * `'28:9'` becomes `'כח:ט'`. Returns the input unchanged if it is not a valid * `chapter:verse`, or `''` for `null`/`undefined`. * @param chapVerse a `chapter:verse` string * @returns the verse with chapter and verse in Hebrew numerals */ export declare function formatVerseToHebrew(chapVerse: string): string; /** * Formats a passage compactly, omitting a repeated chapter number in the end * verse, e.g. `"Numbers 28:9-15"` (versus `"Numbers 28:9-28:15"`). * @param aliyah the passage to format * @param showBook whether to prefix the book name * @param [language] language for the book name and numerals (default `'en'`) * @returns the formatted citation */ export declare function formatAliyahShort(aliyah: Aliyah, showBook: boolean, language?: string): string;