/**
 * Defines constants for when a {@link ChartModifierBase | Chart Modifier} operation occurs
 * See https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button#value for more information
 *
 * Default `EExecuteOn.MouseLeftButton` - same as `EExecuteOn[0]`
 */
export declare enum EExecuteOn {
    /**
     *  Execute on MouseRightButton
     */
    MouseLeftButton = 0,
    /**
     *  Execute on MouseRightButton
     */
    MouseMiddleButton = 1,
    /**
     *  Execute on MouseRightButton
     */
    MouseRightButton = 2,
    /**
     *  Execute on BrowserBackButton
     */
    BrowserBackButton = 3,
    /**
     *  Execute on MouseDoubleClick
     */
    BrowserForwardButton = 4
}
