import type { Commit, Reducer } from '../types';
export declare const commitsToGroupByEntityId: <TResult>(commits: Commit[], reducer: Reducer) => {
    currentStates: TResult[];
    errors: string[];
};
