import type { OpenWeatherResponse } from './types'; interface Params { apikey?: string; lat: string; lon: string; imperial?: boolean; } export declare class ApiClient { fetchWeatherData(params: Params): Promise; } export {};