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

//#region src/getSurahMeta.d.ts
/**
 * Gets the metadata for the specified Surah.
 *
 * @param surahNum - The Surah to get the metadata for.
 * @param data - The Lists object containing SurahList.
 * @returns The metadata for the specified Surah.
 */
declare function getSurahMeta(surahNum: Surah, data: RiwayaData): SurahMeta;
//#endregion
export { getSurahMeta };