import type { IRequestInfo, ISearchInfo } from './types'; /** * 请求开源治理数据并发送 * @param options 配置信息 */ export declare function sendOpenSourceReport({ date, chatId, webhookUrl, requestInfo, searchInfo, maxShowLinkNum, whiteList, filterOrgPath, }: { date: string | number | Date; chatId: string; webhookUrl: string; requestInfo: IRequestInfo; searchInfo: ISearchInfo; maxShowLinkNum?: number; whiteList?: Array; filterOrgPath?: string; }): Promise;