import type { LinkHTMLAttributes } from 'react';
export type LinkProps = {
    href: string;
    external?: boolean;
} & LinkHTMLAttributes<HTMLAnchorElement>;
export declare function Link({ href, external, children, ...props }: LinkProps): import("react/jsx-runtime").JSX.Element;
