import { RiwayaData } from "./lists/types.cjs";
import { AyahId, Juz } from "./types.cjs";

//#region src/findJuzByAyahId.d.ts
/**
 * Finds the Juz (part) of the Quran that contains the given Ayah (verse) ID.
 *
 * @param ayahId - The ID of the Ayah (verse) to find the Juz for.
 * @param data - The Lists object containing JuzList.
 * @returns The Juz (part) of the Quran that contains the given Ayah ID.
 */
declare function findJuzByAyahId(ayahId: AyahId, data: RiwayaData): Juz;
//#endregion
export { findJuzByAyahId };