import type { PropsWithChildren } from "react"; import React from "react"; export interface LinkProps { readonly url: string; readonly ariaLabel?: string; readonly ariaExpanded?: boolean; readonly external?: boolean; } export declare function Link({ url, children, ariaLabel, ariaExpanded, external, }: PropsWithChildren): React.JSX.Element;