import { LitElement } from 'lit'; import type { Position } from '@blueprintui/components/internals'; declare const BpTooltip_base: (new (...args: any[]) => import("@blueprintui/orbit/").PopoverMixinInterface) & typeof LitElement; /** * ```typescript * import '@blueprintui/components/include/tooltip.js'; * ``` * * ```html * * ``` * * @summary The tooltip component is used to provide additional information to the user when they hover over a specific element. It can be used to provide explanations, definitions, or supplementary information that is not critical to the main content. * @element bp-tooltip * @since 1.0.0 * @event open - dispatched when the tooltip is opened * @event close - dispatched when the tooltip is closed * @command --toggle-popover * @command --show-popover * @command --hide-popover * @slot - content * @cssprop --padding * @cssprop --filter * @cssprop --background * @cssprop --color * @cssprop --width * @cssprop --height * @cssprop --min-width * @cssprop --min-height * @cssprop --font-size */ export declare class BpTooltip extends BpTooltip_base { /** Determines whether a close button is displayed for dismissing the tooltip */ accessor closable: boolean; /** Specifies the position of the tooltip relative to its anchor element */ accessor position: Position; /** Provides internationalization strings for translated text content */ accessor i18n: { copy: string; sort: string; none: string; ascending: string; descending: string; expand: string; close: string; resize: string; filter: string; loading: string; show: string; hide: string; previous: string; next: string; first: string; last: string; today: string; browse: string; removeFile: string; files: string; resizeColumn: string; closeDetails: string; noData: string; action: string; dropTarget: string; firstPage: string; previousPage: string; nextPage: string; lastPage: string; pageSize: string; pagination: string; increment: string; decrement: string; }; static styles: CSSStyleSheet[]; get popoverConfig(): { readonly type: "manual" | "hint"; readonly focusTrap: false; readonly scrollLock: false; readonly modal: false; }; render(): import("lit").TemplateResult<1>; connectedCallback(): void; } export {};