import { type ComponentPropsWithRef, type ElementType, type HTMLAttributes, type ReactElement } from 'react'; export type LinkProperties = { /** Alternate color scheme */ alternate?: boolean; /** Disabled */ disabled?: HTMLAttributes['aria-disabled']; /** No Underline */ noUnderline?: boolean; /** Skip Link */ skipLink?: boolean; } & ({ /** Cloned Element (not compatible with tag property) */ element?: never; /** Tag (not compatible with element property) */ tag?: ElementType; } | { /** Cloned Element (not compatible with tag property) */ element?: ReactElement>; /** Tag (not compatible with element property) */ tag?: never; }) & Omit, ''>; /** * Text-based navigation elements that directs users to another destination. * @docs {@link https://design.visa.com/components/link/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const Link: { ({ alternate, className, disabled, element, noUnderline, skipLink, tag: Tag, ...remainingProps }: LinkProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Link;