export declare function genRobotMsg({ errorMap, mrId, mrUrl, repoConfig, total, }: {
    errorMap: Record<string, {
        filePath: string;
        line: number;
        number: number;
    }>;
    mrId: string | number;
    mrUrl: string;
    repoConfig: any;
    total: any;
}): string;
