import React from 'react'; import { BoxProps } from '../Box'; export interface LinkProps extends Omit, 'color'> { /** Whether the link is external and should open in a new tab */ external?: boolean; /** The text style & color of the link */ variant?: 'prominent' | 'neutral' | 'discreet'; /** Whether the link should be disabled */ disabled?: boolean; } export declare const Link: React.ForwardRefExoticComponent & React.RefAttributes>; export default Link;