import { CSSResultArray, PropertyValues, TemplateResult } from 'lit'; import { LuzmoElement } from '../../utils/base.js'; declare const LuzmoTopNavItem_base: typeof LuzmoElement; /** * @element luzmo-top-nav-item * * @slot - text label of the navigation item */ export declare class LuzmoTopNavItem extends LuzmoTopNavItem_base { static get styles(): CSSResultArray; href: string; target?: string; download?: string; rel?: string; label?: string; selected: boolean; disabled: boolean; value: string; private anchorElement; protected render(): TemplateResult; protected firstUpdated(changes: PropertyValues): void; protected updated(changes: PropertyValues): void; click(): void; get focusElement(): HTMLElement; } export {};