import type { ComponentProps } from "react"; import { LinkIcon, LinkRoot } from "./link"; export declare const Link: (({ children, className, ...props }: import("./link").LinkRootProps) => import("react/jsx-runtime").JSX.Element) & { Root: ({ children, className, ...props }: import("./link").LinkRootProps) => import("react/jsx-runtime").JSX.Element; Icon: ({ children, className, ...rest }: import("./link").LinkIconProps & Omit>) => import("react/jsx-runtime").JSX.Element; }; export type Link = { Props: ComponentProps; RootProps: ComponentProps; IconProps: ComponentProps; }; export { LinkRoot, LinkIcon }; export type { LinkRootProps, LinkIconProps, LinkRootProps as LinkProps } from "./link"; export { linkVariants } from "@heroui/styles"; export type { LinkVariants } from "@heroui/styles";