export type * from '../source/types'; type Lang = 'id'; type TafsirKey = 'kemenag'; type Arabics = Record; type Latins = Record; type Translations = Record>; type Tafsirs = { id: Record<'kemenag', Record>; }; export type SurahVerses = { arabics: Arabics; latins: Latins; translations: Translations; tafsirs: Tafsirs; }; export type SurahVerse = { arabic: string; latin: string; translation: Record; tafsir: { id: Record; }; };