import { VcHyperLinkColor, VcHyperLinkType } from '../../types'; import { TEXT_SIZE_TYPE } from '../../enum/constants'; import { TIcon } from '../../types/icons.types'; type SIZE_TYPE = TEXT_SIZE_TYPE; interface IHLProps { /** * @description Icon shown before the link text. Accepts a class * string (legacy `vc-icon-*`) or a Vue component (e.g. a Lucide * icon from `@lucide/vue`). */ icon?: TIcon; /** @description URL or route path for the hyperlink */ href?: string; /** @description Type of link (internal router link or external anchor) */ type?: VcHyperLinkType; /** @description Color theme of the hyperlink */ color?: VcHyperLinkColor; /** @description Data attribute for testing purposes */ dataTestName?: string; /** @description Text size variant for the link */ size?: SIZE_TYPE; } declare const _default: __VLS_WithTemplateSlots, { icon: string; href: string; type: string; color: string; dataTestName: string; size: string; }>>, { attributeName: import("vue").ComputedRef<"to" | "href">; textSize: import("vue").ComputedRef; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly, { icon: string; href: string; type: string; color: string; dataTestName: string; size: string; }>>> & Readonly<{}>, { size: "" | "xxs" | "xs" | "sm" | "base" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "6xl"; icon: TIcon; color: "" | "success" | "warning" | "primary" | "secondary" | "destructive" | "active" | "primary-alternative"; type: VcHyperLinkType; href: string; dataTestName: string; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, { default?(_: {}): any; }>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {}; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };