import { TemplateRef, ElementRef, OnInit, OnDestroy, AfterViewInit, ChangeDetectorRef } from '@angular/core';
import { TooltipContextService } from '../../../services/common/tooltip-context.service';
import * as i0 from "@angular/core";
export declare class TooltipComponent implements OnInit, OnDestroy, AfterViewInit {
    private tooltipContext;
    private cdr;
    content?: string;
    contentSnippet?: TemplateRef<any>;
    iconSnippet?: TemplateRef<any>;
    orientation?: 'tr' | 'tl' | 'bl' | 'br';
    tooltipRef: ElementRef<HTMLElement>;
    constructor(tooltipContext: TooltipContextService, cdr: ChangeDetectorRef);
    active: boolean;
    tooltipOrientation: 'tr' | 'tl' | 'bl' | 'br';
    private rectSub?;
    private hasViewInitialized;
    private latestRect;
    ngOnInit(): void;
    ngAfterViewInit(): void;
    repositionTooltip(rect: DOMRect): void;
    ngOnDestroy(): void;
    handleMouseEnter(): void;
    handleMouseLeave(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<TooltipComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<TooltipComponent, "cardinal-tooltip", never, { "content": { "alias": "content"; "required": false; }; "contentSnippet": { "alias": "contentSnippet"; "required": false; }; "iconSnippet": { "alias": "iconSnippet"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; }, {}, never, never, true, never>;
}
