import { Type } from "igniteui-react-core";
/**
 * Used to indicate the type of operation that [[UndoHistoryItem]] represents.
 */
export declare enum UndoHistoryItemType {
    /**
     * The item represents an undo operation.
     */
    Undo = 0,
    /**
     * The item represents a redo operation.
     */
    Redo = 1
}
/**
 * @hidden
 */
export declare let UndoHistoryItemType_$type: Type;
