import { CommandOptions } from "ariakit"; import { As, Props } from "ariakit-utils/types"; export declare const useLink: import("ariakit-utils").Hook>; export declare const Link: import("ariakit-utils").Component>; export declare type LinkOptions = CommandOptions & { /** * Opens the link in a new tab * @default false */ isExternal?: boolean; }; export declare type LinkProps = Props>; export declare function isLink(element: { tagName: string; }): boolean;