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

//#region src/isAyahPageFirst.d.ts
/**
 * Determines if the given ayah is the first ayah of a juz.
 *
 * @param ayahId - The ayah id .
 * @param data - The Lists object for the riwaya.
 * @returns The page number if the ayah is the first ayah of the page, otherwise -1.
 */
declare function isAyahPageFirst(ayahId: AyahId, data: RiwayaData): Page | number;
//#endregion
export { isAyahPageFirst };