/// export interface ICommit { authorDisplayName: string; commitUrl: string; displayId: string; id: string; message: string; timestamp: number | string; } export interface ICommitHistoryProps { commits: ICommit[]; } export declare const CommitHistory: ({ commits }: ICommitHistoryProps) => JSX.Element;