/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { ToolProps } from './ToolProps';
/**
 * @hidden
 */
export declare namespace HistoryToolNS {
    /**
     * @hidden
     */
    interface UndoProps extends ToolProps {
        command?: any;
    }
    /**
     * @hidden
     */
    interface RedoProps extends ToolProps {
        command?: any;
    }
}
