export interface HttpAPIOptions { apiKey?: string; url: string; } /** * Common class to access to a geOps api using http. * @private */ declare class HttpAPI { apiKey?: string; url: string; constructor(options: HttpAPIOptions); /** * Append the apiKey before sending the request. * * @private */ fetch(path: string, params?: V, config?: RequestInit): Promise; } export default HttpAPI;