import { type TemplateResult } from 'lit'; import type { NuiType } from '../../types/nui-type.js'; import type { ImageFetchPriority } from '../nui-image/types.js'; import type { AnchorRel, AnchorTarget } from './types.js'; export interface 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; nuiType: NuiType; } export declare function getAnchorClass(anchorClass: string): string; export declare function renderAnchor(state: NuiAnchorViewState): TemplateResult; //# sourceMappingURL=logic.d.ts.map