export declare enum EAnnotationClippingMode {
    /**
     * Clips to the series view rect, ie the area within the axes
     */
    SeriesViewRect = "SeriesViewRect",
    /**
     * Clips to the whole sub-chart rect or to the chart rect if not applicable
     */
    SubChart = "SubChart",
    /**
     * Clips to the whole chart rect. In case of sub-charts it allows floating SVG annotations over adjacent sub-charts
     */
    Chart = "Chart"
}
