import { default as React } from 'react'; import { Link as LinkPrimitive } from '../link'; export type LinkProps = Omit, 'variant'> & { home?: boolean; }; export declare const Link: React.ForwardRefExoticComponent, HTMLAnchorElement>, "ref"> & { asChild?: boolean; disableVisited?: boolean; ensureTargetArea?: boolean; silent?: boolean; variant: "text" | "standalone" | "navigation" | "text-negative" | "standalone-negative" | "navigation-negative"; } & React.RefAttributes, "ref">, "variant"> & { home?: boolean; } & React.RefAttributes>;