import { Component, PropType } from 'vue'; import { AsTag } from '../../primitive'; import { LinkVariantProps } from './link.themes'; export declare const linkProps: { as: { type: PropType; default: string; }; color: { type: PropType; }; size: { type: PropType; }; underline: { type: PropType; }; isBlock: { type: PropType; }; isDisabled: { type: PropType; }; disableAnimation: { type: PropType; }; };