import type { LinkVariants } from "@heroui/styles";
import type { ComponentPropsWithRef } from "react";
import { Link as LinkPrimitive } from "react-aria-components";
interface LinkRootProps extends ComponentPropsWithRef<typeof LinkPrimitive>, LinkVariants {
}
declare const LinkRoot: ({ children, className, ...props }: LinkRootProps) => import("react/jsx-runtime").JSX.Element;
type LinkIconProps = ComponentPropsWithRef<"span">;
declare const LinkIcon: ({ children, className, ...rest }: LinkIconProps) => import("react/jsx-runtime").JSX.Element;
export { LinkRoot, LinkIcon };
export type { LinkRootProps, LinkIconProps };
