import { Commit } from '../../types';
import { RedisearchDefinition } from './redisearchDefinition';
export declare type CommonCommitFields = Pick<Commit, 'id' | 'commitId' | 'entityName' | 'mspId' | 'version' | 'events' | 'signedRequest'>;
export declare type DerivedCommitFields = {
    creator: string;
    evstr: string;
    event: string;
    ts: number;
};
export declare type CommitSearchDefinition = RedisearchDefinition<CommonCommitFields & DerivedCommitFields>;
