import type { ExtractPropTypes } from 'vue'; import type Link from './link.vue'; export declare const linkProps: { readonly type: import("@element-plus-next/vue-utils").EpPropFinalized; readonly underline: import("@element-plus-next/vue-utils").EpPropFinalized; readonly disabled: import("@element-plus-next/vue-utils").EpPropFinalized; readonly href: import("@element-plus-next/vue-utils").EpPropFinalized; readonly icon: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => import("@element-plus-next/vue-utils").IconProp & {}) | (() => import("@element-plus-next/vue-utils").IconProp) | ((new (...args: any[]) => import("@element-plus-next/vue-utils").IconProp & {}) | (() => import("@element-plus-next/vue-utils").IconProp))[], unknown, unknown, "", boolean>; }; export declare type LinkProps = ExtractPropTypes; export declare const linkEmits: { click: (evt: MouseEvent) => boolean; }; export declare type LinkEmits = typeof linkEmits; export declare type LinkInstance = InstanceType;