import { DataChangeHistoryContext } from '../../AdaptableOptions/DataChangeHistoryOptions';
import { AdaptableApi, AdaptableButton, DataChangeHistoryOptions } from '../../types';
import { DataChangeHistoryData } from './dataChangeHistoryHelpers';
export declare const buildDataChangeHistoryContext: (rowData: DataChangeHistoryData, parentAdapTableApi: AdaptableApi, onUndoChange: (changeKey: string) => void, onClearRow: (changeKey: string) => void) => DataChangeHistoryContext;
export declare const buildChangeHistoryButtons: (options: DataChangeHistoryOptions, parentAdapTableApi: AdaptableApi, onUndoChange: (changeKey: string) => void, onClearRow: (changeKey: string) => void) => AdaptableButton<DataChangeHistoryContext>[] | null;
