import { Surah, AyahMeta } from "./types";
/**
 * Retrieves metadata for all ayahs in a specific surah.
 *
 * @param surahNumber - The surah number (1-114)
 * @returns Array of AyahMeta objects for each ayah in the surah
 * @throws RangeError If the surah number is not between 1 and 114
 */
export declare function getAyahMetasForSurah(surahNumber: Surah): AyahMeta[];
