import { LitElement } from 'lit'; /** * Header fly-out panel link. * @fires on-click - Captures the click event and emits the original event details. `detail:{ origEvent: Event }` * @slot unnamed - Slot for link text/content. */ export declare class HeaderPanelLink extends LitElement { static styles: import("lit").CSSResult; /** Link url. */ accessor href: string; /** Defines a target attribute for where to load the URL. Possible options include "_self" (default), "_blank", "_parent", "_top" */ accessor target: "_self"; /** Defines a relationship between a linked resource and the document. An empty string (default) means no particular relationship */ accessor rel: string; render(): import("lit-html").TemplateResult<1>; private handleClick; } declare global { interface HTMLElementTagNameMap { 'kyn-header-panel-link': HeaderPanelLink; } } //# sourceMappingURL=headerPanelLink.d.ts.map