/** * 获取天气信息并发送 * @param {object} options 配置 * @param {string} options.webhookUrl 机器人hook地址 * @param {string} [options.chatId] 会话Id * @param {string} [options.force] 是否在和之前获取数据相同时,也发送 * @returns {Promise} 请求Promise */ export declare function sendWeatherRobotMsg({ webhookUrl, chatId, force, }: { webhookUrl: string; chatId: string | string[]; force?: boolean; }): Promise;