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

//#region src/prevAyah.d.ts
/**
 * Get the previous ayah for the given surah and ayah number.
 * @param surah - The surah number.
 * @param ayah - The ayah number within the surah.
 * @param data - The Lists object containing SurahList.
 * @returns The surah and ayah number of the previous ayah.
 */
declare function prevAyah(surah: Surah, ayah: AyahNo, data: RiwayaData): SurahAyah;
//#endregion
export { prevAyah };