import { Selector } from 'reselect';
import type { Commit } from '../../types';
import type { CommitInRedis } from '../types';
export declare type PickedCommit = Required<Pick<Commit, 'id' | 'entityName' | 'commitId' | 'mspId' | 'entityId' | 'events' | 'version' | 'signedRequest'>>;
export declare const preSelector: Selector<[PickedCommit], CommitInRedis>;
