import { ComponentPropsWithoutRef } from 'react'; /** * Props for the LinkHeadless component. * @extends ComponentPropsWithoutRef<"a"> */ export type LinkHeadlessProps = ComponentPropsWithoutRef<"a">; /** * Headless link component for creating accessible hyperlinks. * * Features: * - Security attributes (rel="noopener noreferrer") for external links * * @example * * Go to Dashboard * * * @example * * External Documentation * * */ export declare const LinkHeadless: import('react').ForwardRefExoticComponent, HTMLAnchorElement>, "ref"> & import('react').RefAttributes>;