import { CustomElement } from "../../internal/custom-element.js"; import { OdxNavigationItem } from "../navigation/navigation-item.js"; import { TabBarLayout } from "../tab-bar/tab-bar.js"; import { PropertyValues, TemplateResult } from "lit"; declare global { interface HTMLElementTagNameMap { 'odx-anchor-navigation': OdxAnchorNavigation; } } declare const OdxAnchorNavigation_base: typeof CustomElement & (new (...args: any[]) => import("@lit-labs/signals").SignalWatcherApi); declare class OdxAnchorNavigation extends OdxAnchorNavigation_base { #private; static tagName: string; static styles: import("lit").CSSResult[]; readonly activeItem: import("@odx/foundation").ReadonlySignal; readonly activeIndex: import("@odx/foundation").ReadonlySignal; root: Document | HTMLElement; rootMargin?: string | null; threshold: number; layout: TabBarLayout; constructor(); connectedCallback(): void; disconnectedCallback(): void; protected render(): TemplateResult; protected updated(props: PropertyValues): void; } export { OdxAnchorNavigation };