import * as React from 'react'; import type { IStyle, ITheme } from '@fluentui/style-utilities'; import type { IRefObject, IStyleFunctionOrObject } from '@fluentui/utilities'; /** * {@docCategory Link} */ export interface ILink { /** Sets focus to the link. */ focus(): void; } /** * @deprecated No longer used. */ export interface ILinkHTMLAttributes extends React.HTMLAttributes { // Shared type?: string; // Anchor download?: any; href?: string; hrefLang?: string; media?: string; rel?: string; target?: string; // Button autoFocus?: boolean; disabled?: boolean; form?: string; formAction?: string; formEncType?: string; formMethod?: string; formNoValidate?: boolean; formTarget?: string; name?: string; value?: string | string[] | number; /** Any other props for HTMLElements or a React component passed to `as` */ [key: string]: any; } /** * Link component props. All built-in props for `` and `