import * as React from 'react';
import { CellDataChangedInfo } from '../../AdaptableState/Common/CellDataChangedInfo';
export interface DataChangeHistoryData {
    primaryKey: string;
    changeKey: string;
    changeTriggerLabel: string;
    changedColumnLabel: string;
    changeInfo: CellDataChangedInfo;
}
export interface DataChangeHistoryGridProps {
    adaptableContainerId: string;
    agGridContainerId: string;
    changeHistoryLog: Record<string, CellDataChangedInfo>;
    onUndoChange: (changeKey: string) => void;
    onClearRow: (changeKey: string) => void;
}
export declare const DataChangeHistoryGrid: (props: DataChangeHistoryGridProps) => React.JSX.Element;
