export interface SelectDataProps { url: string; params: any; dataKey?: string; valueKey: string; displayKey: string; displayArrKey?: string; valueArrKey?: string; } export interface TypeAheadDataProps extends SelectDataProps { searchKey?: string; } declare const fetchDataFromJson: (data: TypeAheadDataProps) => Promise; export default fetchDataFromJson;