import { ReactiveController, ReactiveElement } from 'lit'; export type TypeNavigation = ReactiveElement & { _internals?: ElementInternals; }; export declare function typeNavigation(): ClassDecorator; /** * Responsible for setting the role attribute of an element to "navigation" to indicate that the element is a navigation landmark */ export declare class TypeNavigationController implements ReactiveController { private host; constructor(host: T); hostConnected(): void; }