import { OnInit } from '@angular/core'; import { TooltipContent } from './tooltip-content.type'; export declare class TooltipContainer implements OnInit { renderMethod: 'template' | 'component' | 'text'; content: TooltipContent; position: 'top' | 'bottom' | 'right' | 'left'; ngOnInit(): void; }