import React from "react"; import { PrimitiveBaseProps, PrimitiveWithChildrenProps, PrimitiveWithSizing } from "../helpers/types"; interface Props extends React.AnchorHTMLAttributes, PrimitiveBaseProps, PrimitiveWithSizing, PrimitiveWithChildrenProps { } export declare function Link(props: Props): JSX.Element; export {};