import { LitElement } from 'lit'; import type { Position } from '@blueprintui/components/internals'; declare const BpToggletip_base: (new (...args: any[]) => import("@blueprintui/orbit/").PopoverMixinInterface) & typeof LitElement; /** * ```typescript * import '@blueprintui/components/include/toggletip.js'; * ``` * * ```html * * ``` * * @summary The toggletip component is used to provide explanations, definitions, or supplementary interactions for a given element. It should be used to provide additional information or actions that are not essential to the user's understanding of the content, but that may be helpful or informative. * @element bp-toggletip * @since 1.0.0 * @event open - dispatched when the toggletip is opened * @event close - dispatched when the toggletip 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 BpToggletip extends BpToggletip_base { /** Determines whether a close button is displayed for dismissing the toggletip */ accessor closable: boolean; /** Specifies the position of the toggletip 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: "auto"; readonly focusTrap: false; readonly scrollLock: false; readonly modal: false; }; render(): import("lit").TemplateResult<1>; connectedCallback(): void; } export {};