import * as React from 'react'; export interface LinkProps extends React.AnchorHTMLAttributes { /** * The href attribute for the link. */ href: string; /** * The content of the link. */ children: React.ReactNode; /** * Additional CSS class names. */ className?: string; /** * Whether the link is underlined. * @default true */ underline?: boolean; /** * Whether the link should open in a new tab. * @default false */ external?: boolean; } export declare function Link({ href, children, className, underline, external, ...props }: LinkProps): import("react/jsx-runtime").JSX.Element;