import { BibleTestament } from '../data/languages/languages.zod'; export declare const OLD_TESTAMENT_BOOKS: Set; export declare const NEW_TESTAMENT_BOOKS: Set; export interface VerseRangeInfo { book: string; chapter: string; startVerse: string; endVerse: string; chapterId: string; chapterIdUnderscore: string; testament: BibleTestament; chapterAudioFileName: string; chapterJsonFileName: string; } /** Parses a verse range string like "GEN.1.1-GEN.1.25" or "JHN.3.16". */ export declare function parseVerseRange(passageId: string): VerseRangeInfo;