import { Type } from "igniteui-react-core";
/**
 * Describes available behaviors for series highlighting depending on distance of mouse on hover operation.
 */
export declare enum HighlightingMode {
    /**
     * Specifies the highlight starts on closest element of series
     */
    Closest = 0,
    /**
     * Specifies the highlight starts when directly over element of series
     */
    DirectlyOver = 1
}
/**
 * @hidden
 */
export declare let HighlightingMode_$type: Type;
