import type { DaDataSuggestion } from './core-types'; import type { HttpCache } from './http-cache'; export interface RequestOptions { headers: { [header: string]: string; }; json: any; } export declare const makeRequest: (method: string, endpoint: string, data: RequestOptions, cache: HttpCache | null, onReceiveData: (response: Array>) => void) => void;