/** * A class representing the tooltip element with a method to update the tooltip style */ declare class Tooltip { container: HTMLDivElement; tooltip: HTMLSpanElement; constructor(); update(tooltipText?: string, isVisible?: boolean, position?: { top: number; left: number; }): void; } export default Tooltip;