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