/// import type { ICommit } from './CommitHistory'; import type { IJarDiff } from './JarDiffs'; import type { IBuildDiffInfo } from '../domain'; import type { IModalComponentProps } from '../presentation'; export interface IChangesModalProps extends IModalComponentProps { buildInfo: IBuildDiffInfo; commits: ICommit[]; jarDiffs: IJarDiff; nameItem: { name: string; }; } export declare const ChangesModal: ({ buildInfo, commits, dismissModal, jarDiffs, nameItem }: IChangesModalProps) => JSX.Element;