import '../nui-icon/nui-icon.js'; import '../nui-image/nui-image.js'; import '../nui-label/nui-label.js'; import '../nui-tooltip/nui-tooltip.js'; import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import type { ImageFetchPriority } from '../nui-image/types.js'; import { type NuiAnchorViewState } from './logic.js'; import type { AnchorRel, AnchorTarget } from './types.js'; /** * @slot - Default slot content */ export declare class NuiAnchor extends LitElement implements NuiAnchorViewState { href: string; rel: AnchorRel; target: AnchorTarget; icon: string; size: string; src: string; alt: string; label: string; tooltip: string; fetchpriority: ImageFetchPriority | ''; anchorClass: string; itemClass: string; anchorStyle: string; unstyled: boolean; nuiType: NuiType; protected createRenderRoot(): DocumentFragment | HTMLElement; protected updated(changed: PropertyValues): void; render(): import("lit-html").TemplateResult; } declare global { interface HTMLElementTagNameMap { 'nui-anchor': NuiAnchor; } } //# sourceMappingURL=nui-anchor.d.ts.map