import { IgxAxisComponent } from "./igx-axis-component";
import { CategoryTooltipLayerPosition } from "./CategoryTooltipLayerPosition";
import { IgxAnnotationLayerComponent } from "./igx-annotation-layer-component";
import { CategoryToolTipLayer } from "./CategoryToolTipLayer";
import * as i0 from "@angular/core";
/**
 * Represents an annotation layer that displays grouped tooltips for series that use a category axis.
*/
export declare class IgxCategoryToolTipLayerComponent extends IgxAnnotationLayerComponent {
    protected createImplementation(): CategoryToolTipLayer;
    /**
                                 * @hidden
                                 */
    get i(): CategoryToolTipLayer;
    constructor();
    get isToolTipLayer(): boolean;
    static ngAcceptInputType_isToolTipLayer: boolean | string;
    /**
     * Gets whether the series is an annotation layer displayed only when hovering over the chart.
    */
    get isAnnotationHoverLayer(): boolean;
    static ngAcceptInputType_isAnnotationHoverLayer: boolean | string;
    /**
     * Gets whether the default tooltip behaviors for the chart are disabled if this layer is present.
    */
    get isDefaultTooltipBehaviorDisabled(): boolean;
    static ngAcceptInputType_isDefaultTooltipBehaviorDisabled: boolean | string;
    /**
     * Gets or sets the Axis to target this annotation to. If null, this annotation layer will not render content.
    */
    get targetAxis(): IgxAxisComponent;
    set targetAxis(v: IgxAxisComponent);
    /**
     * Gets or sets whether to use value interpolation when drawing the tooltips.
    */
    get useInterpolation(): boolean;
    set useInterpolation(v: boolean);
    static ngAcceptInputType_useInterpolation: boolean | string;
    /**
     * Gets or sets the Position to apply to the tooltip containers.
    */
    get toolTipPosition(): CategoryTooltipLayerPosition;
    set toolTipPosition(v: CategoryTooltipLayerPosition);
    static ngAcceptInputType_toolTipPosition: CategoryTooltipLayerPosition | string;
    /**
     * 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);
    static ngAcceptInputType_toolTipBorderThickness: number | string;
    findByName(name: string): any;
    protected _styling(container: any, component: any, parent?: any): void;
    /**
     * Hides any tooltips presented by the layer, if any.
    
    */
    hideToolTips(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<IgxCategoryToolTipLayerComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<IgxCategoryToolTipLayerComponent, "igx-category-tool-tip-layer", never, { "targetAxis": { "alias": "targetAxis"; "required": false; }; "useInterpolation": { "alias": "useInterpolation"; "required": false; }; "toolTipPosition": { "alias": "toolTipPosition"; "required": false; }; "toolTipBackground": { "alias": "toolTipBackground"; "required": false; }; "toolTipBorderBrush": { "alias": "toolTipBorderBrush"; "required": false; }; "toolTipBorderThickness": { "alias": "toolTipBorderThickness"; "required": false; }; }, {}, never, never, true, never>;
}
