import { Link } from './Link'; /** * @summary A wrapper link that propagates interactive states (hover/focus) to child components. * @slot before - Content to be placed before the link text. * @slot after - Content to be placed after the link text. * @attr {string} href - The URL that the hyperlink points to. * @attr {string} target - Where to display the linked URL. * @attr {string} rel - The relationship of the linked URL as space-separated link types. * @attr {string} download - Prompts the user to save the linked URL instead of navigating to it. */ export declare class LinkWrapper extends Link { #private; constructor(); connectedCallback(): void; disconnectedCallback(): void; attributeChangedCallback(attrName: string, oldValue: string, newValue: string): void; }