import { ExtractPropTypes, PropType } from 'vue'; import type Link from './Link.vue'; export declare type LinkType = 'primary' | 'success' | 'warning' | 'info' | 'danger' | 'default'; export declare const linkProps: { type: { type: PropType; default: string; }; underline: { type: BooleanConstructor; default: boolean; }; disabled: { type: BooleanConstructor; default: boolean; }; href: { type: StringConstructor; default: string; }; icon: { type: StringConstructor; default: string; }; }; export declare const linkEmits: { click: (evt: MouseEvent) => boolean; }; export declare type LinkProps = ExtractPropTypes; export declare type LinkEmits = typeof linkEmits; export declare type LinkInstance = InstanceType;