/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { LockAxis } from './lock-axis.js';
import { ModifierKey } from './modifier-key.js';
/**
 * Configures the drag behavior during the pan and zoom operations.
 */
export interface DragAction {
    /**
     * Specifies a keyboard key that has to be pressed to activate the gesture.
     */
    key?: ModifierKey;
    /**
     * Specifies an axis that will not be panned or zoomed.
     */
    lock?: LockAxis;
}
