import React, { type PropsWithChildren } from 'react'; export type TextLinkProps = PropsWithChildren<{ disabled?: boolean; /** * @deprecated The external prop is deprecated. */ external?: boolean; variant?: 'default' | 'secondary' | 'minimal'; } & React.AnchorHTMLAttributes>; export declare function TextLink({ children, variant, className, disabled, href, ...props }: TextLinkProps): React.JSX.Element;