import { LitElement } from 'lit'; import { Placement } from '@floating-ui/dom'; declare const NAME = "canary-tooltip"; /** * @slot - Default slot */ export declare class CanaryTooltip extends LitElement { text: string; placement: Placement; references: Array; tooltip: HTMLDivElement; arrow: HTMLDivElement; render(): import('lit-html').TemplateResult<1>; private _showTooltip; private _hideTooltip; static styles: import('lit').CSSResult; } declare global { interface HTMLElementTagNameMap { [NAME]: CanaryTooltip; } namespace JSX { interface IntrinsicElements { [NAME]: any; } } } export {};