import { ReactiveController, ReactiveElement } from 'lit'; export interface TypeAnchor extends ReactiveElement { disabled: boolean; readonly: boolean; readonly _internals?: ElementInternals; } export declare function typeAnchor(): ClassDecorator; /** * Responsible for managing the behavior of a element that contains an anchor element */ export declare class TypeAnchorController implements ReactiveController { #private; private host; constructor(host: T); hostConnected(): Promise; }