/**
 * 获取天气信息
 * @returns {Promise<Array>} 天气数据
 * @example
 *
 * fetchWeatherData().then(content => {
 *   console.log(content)
 * })
 */
export declare function fetchWeatherData<T extends Array<object>>(): Promise<T>;
