import { IgrSeries } from "./igr-series";
import { IgrAnnotationLayer, IIgrAnnotationLayerProps } from "./igr-annotation-layer";
import { ItemToolTipLayer } from "./ItemToolTipLayer";
/**
 * Represents an annotation layer that displays tooltips for all target series individually.
*/
export declare class IgrItemToolTipLayer extends IgrAnnotationLayer<IIgrItemToolTipLayerProps> {
    protected createImplementation(): ItemToolTipLayer;
    /**
                                 * @hidden
                                 */
    get i(): ItemToolTipLayer;
    constructor(props: IIgrItemToolTipLayerProps);
    /**
     * Gets whether the series is an annotation layer displayed only when hovering over the chart.
    */
    get isAnnotationHoverLayer(): boolean;
    get isToolTipLayer(): boolean;
    /**
     * Gets whether the default tooltip behaviors for the chart are disabled if this layer is present.
    */
    get isDefaultTooltipBehaviorDisabled(): boolean;
    /**
     * Gets or sets the name of the series series to target this annotation to. If null, this annotation targets all series simultaneously.
    */
    get targetSeriesName(): string;
    set targetSeriesName(v: string);
    /**
     * Gets or sets the series to target this annotation to. If null, this annotation targets all series simultaneously.
    */
    get targetSeries(): IgrSeries;
    set targetSeries(v: IgrSeries);
    /**
     * Gets or sets whether to use value interpolation when drawing the tooltips.
    */
    get useInterpolation(): boolean;
    set useInterpolation(v: boolean);
    /**
     * Gets or sets whether to skip past unknown values when searching for series values.
    */
    get skipUnknownValues(): boolean;
    set skipUnknownValues(v: boolean);
    /**
     * Gets or sets the background of the tooltip containers.
    */
    get toolTipBackground(): string;
    set toolTipBackground(v: string);
    /**
     * Gets or sets the border color of the tooltip containers.
    */
    get toolTipBorderBrush(): string;
    set toolTipBorderBrush(v: string);
    /**
     * Gets or sets the border thickness of the tooltip containers.
    */
    get toolTipBorderThickness(): number;
    set toolTipBorderThickness(v: number);
    findByName(name: string): any;
    protected _styling(container: any, component: any, parent?: any): void;
    /**
     * Hides any tooltips presented by the layer, if any.
    
    */
    hideToolTips(): void;
    /**
     * Hides any tooltips presented by the layer, if any.
    
    */
    hideToolTipsImmediate(): void;
}
export interface IIgrItemToolTipLayerProps extends IIgrAnnotationLayerProps {
    /**
     * Gets or sets the name of the series series to target this annotation to. If null, this annotation targets all series simultaneously.
    */
    targetSeriesName?: string;
    /**
     * Gets or sets the series to target this annotation to. If null, this annotation targets all series simultaneously.
    */
    targetSeries?: IgrSeries;
    /**
     * Gets or sets whether to use value interpolation when drawing the tooltips.
    */
    useInterpolation?: boolean | string;
    /**
     * Gets or sets whether to skip past unknown values when searching for series values.
    */
    skipUnknownValues?: boolean | string;
    /**
     * Gets or sets the background of the tooltip containers.
    */
    toolTipBackground?: string;
    /**
     * Gets or sets the border color of the tooltip containers.
    */
    toolTipBorderBrush?: string;
    /**
     * Gets or sets the border thickness of the tooltip containers.
    */
    toolTipBorderThickness?: number | string;
}
