import type { ExtractPropTypes, PropType } from 'vue'; import type Link from './link.vue'; export declare const linkProps: { readonly type: import("element-plus/es/utils").EpPropFinalized; readonly underline: import("element-plus/es/utils").EpPropFinalized; readonly disabled: BooleanConstructor; readonly href: import("element-plus/es/utils").EpPropFinalized; readonly target: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => string & {}) | (() => string) | ((new (...args: any[]) => string & {}) | (() => string))[], unknown, unknown, "_self", boolean>; readonly icon: { readonly type: PropType (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export declare type LinkProps = ExtractPropTypes; export declare const linkEmits: { click: (evt: MouseEvent) => boolean; }; export declare type LinkEmits = typeof linkEmits; export declare type LinkInstance = InstanceType;