import { FC } from 'react';
import { HTMLTribeProps } from '../types/index.js';
export declare const LINK_VARIANTS: readonly ["inherit", "neutral", "primary", "accent"];
export declare type LinkVariant = typeof LINK_VARIANTS[number];
export declare type LinkProps = HTMLTribeProps<'a'> & {
external?: boolean;
variant?: LinkVariant;
disabled?: boolean;
};
export declare const Link: FC;