import type { FetchRainbowConfigOptions, ISecretInfo } from '../rainbow/types'; import type { IAddedMap } from './type'; export declare function getHistoryModeConfigDiffAndSendRobot({ secretInfo, appName, key, chatId, webhookUrl, mentions, fetchRainbowConfigOptions, heartbeat, }: { secretInfo: ISecretInfo; appName: string; key: string; chatId?: string | string[]; webhookUrl?: string; mentions?: Array; fetchRainbowConfigOptions?: FetchRainbowConfigOptions; heartbeat?: boolean; }): Promise<{ message: string; equal: boolean; addedMap: IAddedMap; deletedMap: IAddedMap; }>;