import { LitElement } from 'lit'; import type { IInfoProps } from './model/IInfoProps'; declare global { interface HTMLElementTagNameMap { 'us-info': InfoTooltip; } } export declare class InfoTooltip extends LitElement implements IInfoProps { static styles: import("lit").CSSResultGroup[]; corner: IInfoProps['corner']; offset: IInfoProps['offset']; showArrow: boolean; widgetView: IInfoProps['widgetView']; strategy: IInfoProps['strategy']; color: string; iconSize: IInfoProps['iconSize']; render(): import("lit").TemplateResult<1>; }