import React from 'react'; import { IComponentBaseProps, ComponentColor } from '../types'; export type LinkProps = React.AnchorHTMLAttributes & IComponentBaseProps & { color?: 'neutral' | ComponentColor; hover?: boolean; }; declare const Link: React.ForwardRefExoticComponent & IComponentBaseProps & { color?: "neutral" | "primary" | "secondary" | "accent" | "ghost" | "info" | "success" | "warning" | "error" | undefined; hover?: boolean | undefined; } & React.RefAttributes>; export default Link;