import { TestableLitElement } from '../../utils/components/testable-lit-element/testable-lit-element.ts'; export type NJC_TEXT_LINK_VARIANT = 'default' | 'subtle'; /** * @slot - Default slot for the text link content */ export declare class NjcTextLink extends TestableLitElement { /** * @property {string} href - The URL the text link navigates to */ href: string; /** * @property {string} endIcon - The icon to display at the end of the text link */ endIcon: string; /** * @property {NJC_TEXT_LINK_VARIANT} variant - The variant of the text link */ variant: NJC_TEXT_LINK_VARIANT; /** * @property {string} target - The target of the link */ target: string; /** * @property {boolean} skeleton - Whether the text link is in a skeleton loading state */ skeleton: boolean; /** * @property {boolean} disabled - Whether the text link is disabled */ disabled: boolean; }