import { LitElement } from 'lit';
import './tooltip-item';
export interface ITooltipProps {
}
export declare class ToolTip extends LitElement {
    static styles: import("lit").CSSResult[];
    opened: boolean;
    private _tooltipTemplate;
    render(): (symbol | import("lit").TemplateResult<1>)[];
    open(): void;
    close(): void;
    private _onClick;
    getPosition: () => {
        top: string;
        bottom: string;
        maxHeight: string;
        left: string;
        right: string;
        maxWidth: string;
    };
}
declare global {
    interface HTMLElementTagNameMap {
        'lit-tooltip': ToolTip;
    }
}
