import type { BibleStatuses } from '../data/bibleStatuses/bibleStatuses.zod'; export declare const OLD_TESTAMENT_BOOKS: Set; export declare const NEW_TESTAMENT_BOOKS: Set; /** * Expands an optimized chapter list back to individual chapters Converts book * names (e.g., "GEN") back to all chapters (e.g., ["GEN.1", "GEN.2", ..."]) * Converts testament names ("OT", "NT") back to all chapters in that testament * Leaves individual chapters unchanged * * @param optimizedChapters - Array that may contain testament IDs, book IDs, or * chapter IDs * @returns Array of individual chapter IDs in canonical order */ export declare function getAvailableChapters(bibleId: string, type: keyof BibleStatuses[string]): string[]; export declare function getPercentage(bibleId: string, type: keyof BibleStatuses[string]): number;