import { type PolymorphicComponentProps } from "../Polymorphic"; import type { ThemeBaseSize } from "../theme.types"; export type LinkOwnProps = { color?: "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error" | "neutral"; /** 尺寸大小 */ size?: ThemeBaseSize; }; export type LinkProps = PolymorphicComponentProps; declare const defaultElement = "a"; /** 多态组件, ref会转发给实际的组件 */ export declare function Link(props: LinkProps): import("react").JSX.Element; export {};