import { type ElementPart } from 'lit/directive.js'; import { type DirectiveArgs, DirectiveBase } from '../../../Directives/Abstracts/DirectiveBase'; import { TooltipElement } from './TooltipElement'; /** * @private */ declare class TooltipDirective extends DirectiveBase { private _tooltipElement; /** * Constructs a new instance of the `TooltipDirective` class. * * @public */ constructor(args: DirectiveArgs); /** * @public */ render(_config: Partial): unknown; /** * @public * @override */ update(part: ElementPart, [config]: Parameters): unknown; /** * @public */ disconnected(): void; } /** * @public */ export declare const tooltip: (...values: Parameters) => any; export {}; //# sourceMappingURL=TooltipDirective.d.ts.map