import { Ref, RefAttributes } from "react"; import { DOMProps } from "@react-types/shared"; import { AriaLinkProps } from "@react-types/link"; import { ForwardedRefComponent } from "../../types/components"; export declare type LinkElementType = HTMLAnchorElement; export interface LinkProps extends DOMProps, AriaLinkProps, RefAttributes { children?: React.ReactNode; /** Path to link resource or page */ href?: string; /** Custom class name for setting specific CSS */ className?: string; } export declare type LinkRef = Ref; declare const Link: ForwardedRefComponent; export { Link };