import { PropertyValueMap } from "lit"; import SgdsElement from "../../base/sgds-element"; /** * @summary Link allows users to click and navigate their way from page to page * * @slot default - Pass in a single anchor tag here */ export declare class SgdsLink extends SgdsElement { static styles: import("lit").CSSResult[]; /** Determines the size of the link */ size: "xs" | "sm" | "md" | "lg"; /** Sets the colour of the link @deprecated since 3.6.0 */ variant: "primary" | "danger" | "neutral" | "light" | "dark"; /** Sets the colour of the link, replaces variant prop */ tone: "primary" | "danger" | "neutral" | "fixed-light" | "fixed-dark"; /** When true, sets the active stylings of the link */ active: boolean; /** Disables the link */ disabled: boolean; private _processAnchor; private _processIcon; private _handleSlotChange; firstUpdated(changedProperties: PropertyValueMap): void; render(): import("lit").TemplateResult<1>; } export default SgdsLink;