import { WeatherReturnType } from "../types"; /** * Get the current weather in a given location. * @param location The city and state, e.g. San Francisco, CA * @returns The current temperature and description of the weather in the given location * @throws If the OpenWeather API key is not provided in environment variables * @throws If the network response was not ok * @throws If there was an error fetching the weather data */ export declare const getWeather: (location: string) => Promise;