import { PropType } from "vue"; export declare const SLinkProps: { /** * @description 链接的类型 */ type: PropType<"success" | "info" | "warning" | "danger" | "primary">; /** * @description 是否禁用链接 */ disabled: BooleanConstructor; /** * @description 链接是否具有下划线 */ underline: BooleanConstructor; /** * @description 链接跳转的地址 */ href: StringConstructor; /** * @description 链接的跳转方式 */ jumpMethod: { type: PropType<"push" | "replace" | "newView">; default: string; }; /** * @description 链接的前缀图标 */ prefixIcon: StringConstructor; /** * @description 链接后后缀图标 */ suffixIcon: StringConstructor; };