import { ERROR_MAP } from './config';
export declare function updateMpCIRainbowConfig({ rainbowConfig, branch, originBranch, testRobot, releaseRobot, robot, env, useMpQQ, }: {
    rainbowConfig: Record<string, any>;
    branch: string;
    originBranch?: string;
    testRobot?: number;
    releaseRobot?: number;
    robot?: number;
    env?: string;
    useMpQQ?: boolean;
    errorMap?: typeof ERROR_MAP;
}): {
    error: string;
} | {
    newRainbowConfig: Record<string, any>;
    rainbowKey: string;
};
