import * as React from "react"; export interface LinkProps extends React.AnchorHTMLAttributes { variant?: "default" | "subtle" | "brand"; className?: string; inline?: boolean; } declare const Link: React.ForwardRefExoticComponent>; export { Link }; //# sourceMappingURL=link.d.ts.map