import { RiwayaData } from "./lists/types.cjs";
import { AyahNo, Surah } from "./types.cjs";

//#region src/getAyahCountInSurah.d.ts
/**
 * Get the number of ayahs (verses) in the specified surah.
 * @param surah - The surah number.
 * @param data - The Lists object containing SurahList.
 * @returns The number of ayahs in the specified surah.
 */
declare function getAyahCountInSurah(surah: Surah, data: RiwayaData): AyahNo;
//#endregion
export { getAyahCountInSurah };