import { Type } from "igniteui-react-core";
/**
 * Describes mode for displaying content of axis annotation
 */
export declare enum UserAnnotationTarget {
    /**
     * Specifies slice annotation at specific axis value
     */
    Slice = 0,
    /**
     * Specifies strip annotation from a start to end of an axis
     */
    Strip = 1,
    /**
     * Specifies an annotation of data point on a series
     */
    Point = 2,
    /**
     * Specifies an annotation of axis label
     */
    Axis = 3
}
/**
 * @hidden
 */
export declare let UserAnnotationTarget_$type: Type;
