import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue'; import type Link from './link.vue'; export declare const linkProps: { readonly type: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly underline: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly disabled: BooleanConstructor; readonly href: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly target: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, "_self", boolean>; readonly icon: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export type LinkProps = ExtractPropTypes; export type LinkPropsPublic = __ExtractPublicPropTypes; export declare const linkEmits: { click: (evt: MouseEvent) => boolean; }; export type LinkEmits = typeof linkEmits; export type LinkInstance = InstanceType & unknown; export interface LinkConfigContext { type?: string; underline?: string | boolean; }