/**
 * Defines the MousePosition enum constants, used by the {@link CursorModifier} and {@link RolloverModifier}
 */
export declare enum EMousePosition {
    /**
     * The mouse position is outside the main canvas
     */
    OutOfCanvas = "OutOfCanvas",
    /**
     * The mouse position is in the Axis area
     */
    AxisArea = "AxisArea",
    /**
     * The mouse position is in the Series area
     */
    SeriesArea = "SeriesArea"
}
