/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the configuration of the mousewheel action for selection.
 */
export interface MousewheelSelect {
    /**
     * Determines whether to reverse the mousewheel direction.
     * The normal direction is down for `"zoom out"`.
     * The normal direction is up for `"zoom in"`.
     */
    reverse?: boolean;
    /**
     * Specifies the zoom direction of the selection.
     * Use `both` to enable zooming to expand and contract the selection on both sides, `left` to allow zooming on the left side only, or `right` to permit zooming on the right side only.
     */
    zoom?: 'both' | 'left' | 'right';
}
