import type { ExtractPropTypes } from 'vue'; import type Link from './link.vue'; type colorType = 'blue' | 'yellow' | 'red' | 'green' | 'gray'; export declare const linkColorMap: { blue: { link: string; visited: string; hover: string; active: string; }; yellow: { link: string; visited: string; hover: string; active: string; }; red: { link: string; visited: string; hover: string; active: string; }; green: { link: string; visited: string; hover: string; active: string; }; gray: { link: string; visited: string; hover: string; active: string; }; }; export declare const linkProps: { readonly value: import("ll-plus/es/utils").EpPropFinalized; readonly href: import("ll-plus/es/utils").EpPropFinalized; readonly prefixIcon: import("ll-plus/es/utils").EpPropFinalized; readonly suffixIcon: import("ll-plus/es/utils").EpPropFinalized; readonly gap: import("ll-plus/es/utils").EpPropFinalized, unknown, unknown, 4, boolean>; readonly iconSize: import("ll-plus/es/utils").EpPropFinalized; readonly target: import("ll-plus/es/utils").EpPropFinalized; readonly colorType: import("ll-plus/es/utils").EpPropFinalized, "blue" | "gray" | "green" | "red" | "yellow", unknown, "blue", boolean>; readonly underlineStatus: import("ll-plus/es/utils").EpPropFinalized; readonly disabled: import("ll-plus/es/utils").EpPropFinalized; readonly typeChange: import("ll-plus/es/utils").EpPropFinalized; readonly preview: import("ll-plus/es/utils").EpPropFinalized; readonly linkColor: import("ll-plus/es/utils").EpPropFinalized; readonly hoverColor: import("ll-plus/es/utils").EpPropFinalized; readonly activeColor: import("ll-plus/es/utils").EpPropFinalized; }; export type LinkProps = ExtractPropTypes; export type LinkInstance = InstanceType; export {};