import type { AnchorHTMLAttributes, FC, Ref } from 'react';
import type { VariantProps } from 'class-variance-authority';
import type { TestableProps } from '../../utils/testId';
import { linkVariants } from './classes';
type LinkNativeProps = AnchorHTMLAttributes;
type LinkVariantsProps = VariantProps;
export type LinkProps = LinkNativeProps & LinkVariantsProps & TestableProps & {
ref?: Ref;
asChild?: boolean;
disabled?: boolean;
};
export declare const Link: FC;
export {};