| 12345678910111213141516 | export enum SearchNavigationType {  SURAH = 'surah',  JUZ = 'juz',  HIZB = 'hizb',  AYAH = 'ayah',  RUB_EL_HIZB = 'rub_el_hizb',  SEARCH_PAGE = 'search_page',  PAGE = 'page',  RANGE = 'range',}export interface SearchNavigationResult {  resultType: SearchNavigationType;  name: string;  key: number | string;}
 |