import { Cre8Element } from '../cre8-element'; /** * @slot - The component content */ export declare class Cre8TextLink extends Cre8Element { static styles: import("lit").CSSResult[]; /** * The link URL */ href?: string; /** * Style variant * * * */ variant?: 'display' | 'secondary'; /** * Size variant * * * */ size?: 'sm'; /** * Inverted variant * 1) Used for dark backgrounds */ inverted?: boolean; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'cre8-text-link': Cre8TextLink; } } export default Cre8TextLink; //# sourceMappingURL=text-link.d.ts.map