/**
 * Enumeration constants to define the type of {@link BasePointMarker}
 */
export declare enum EPointMarkerType {
    /**
     * The EllipsePointMarker
     */
    Ellipse = "Ellipse",
    /**
     * The CrossPointMarker
     */
    Cross = "Cross",
    /**
     * The SpritePointMarker
     */
    Sprite = "Sprite",
    /**
     * The SquarePointMarker
     */
    Square = "Square",
    /**
     * The TrianglePointMarker
     */
    Triangle = "Triangle",
    /**
     * The XPointMarker
     */
    X = "X",
    /** A user defined custom point marker.  Use customType in the definition to specify the name */
    Custom = "Custom"
}
