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