import type { DOMRenderProps } from "../../utils/dom"; import type { LinkVariants } from "@heroui/styles"; import type { ComponentPropsWithRef, ReactNode } from "react"; import React from "react"; import { Link as LinkPrimitive } from "react-aria-components/Link"; interface LinkRootProps extends ComponentPropsWithRef, LinkVariants { } declare const LinkRoot: ({ children, className, ...props }: LinkRootProps) => import("react/jsx-runtime").JSX.Element; interface LinkIconProps extends DOMRenderProps { children?: ReactNode; className?: string; } declare const LinkIcon: ({ children, className, ...rest }: LinkIconProps & Omit>) => import("react/jsx-runtime").JSX.Element; export { LinkRoot, LinkIcon }; export type { LinkRootProps, LinkIconProps };