type __VLS_Props = { canonical?: boolean; absolute?: boolean; withBase?: boolean; /** * Route Location the link should navigate to when clicked on. */ to?: string; /** * An alias for `to`. If used with `to`, `href` will be ignored */ href?: string; /** * Forces the link to be considered as external (true) or internal (false). This is helpful to handle edge-cases */ external?: boolean; /** * Where to display the linked URL, as the name for a browsing context. */ target?: '_blank' | '_parent' | '_self' | '_top' | string | null; /** * A rel attribute value to apply on the link. Defaults to "noopener noreferrer" for external links. */ rel?: 'noopener' | 'noreferrer' | 'nofollow' | 'sponsored' | 'ugc' | string | null; /** * If set to true, no rel attribute will be added to the link */ noRel?: boolean; /** * A class to apply to links that have been prefetched. */ prefetchedClass?: string; /** * When enabled will prefetch middleware, layouts and payloads of links in the viewport. */ prefetch?: boolean; /** * Escape hatch to disable `prefetch` attribute. */ noPrefetch?: boolean; }; declare var __VLS_8: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_8) => any; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };