import type { FetchRainbowConfigOptions, ISecretInfo } from '../rainbow/types';
import type { IAddedMap } from './type';
export declare function getHistoryModeConfigDiff({ secretInfo, appName, key, fetchRainbowConfigOptions, }: {
    secretInfo: ISecretInfo;
    appName: string;
    key: string;
    fetchRainbowConfigOptions?: FetchRainbowConfigOptions;
}): Promise<{
    equal: boolean;
    addedMap: IAddedMap;
    deletedMap: IAddedMap;
    parsed: Record<string, string[]>;
    originParsed: Record<string, string[]>;
}>;
