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
*
*
* - **display** applies display treatment to the text link (e.g. article title link)
* - **secondary** applies secondary treatment to the text link (e.g. non-prominent links)
*
*
*/
variant?: 'display' | 'secondary';
/**
* Size variant
*
*
* - **sm** renders a smaller typography preset than the default
*
*
*/
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