import { BackgroundAppearanceContextValue } from '@fluentui/react-shared-contexts'; import type { ComponentProps } from '@fluentui/react-utilities'; import type { ComponentState } from '@fluentui/react-utilities'; import type { ForwardRefComponent } from '@fluentui/react-utilities'; import * as React_2 from 'react'; import type { Slot } from '@fluentui/react-utilities'; import type { SlotClassNames } from '@fluentui/react-utilities'; /** * A Link is a reference to data that a user can follow by clicking or tapping it. */ export declare const Link: ForwardRefComponent; export declare const linkClassNames: SlotClassNames; export declare type LinkProps = ComponentProps & { /** * A link can appear either with its default style or subtle. * If not specified, the link appears with its default styling. * @default 'default' */ appearance?: 'default' | 'subtle'; /** * Whether the link is disabled. * @default false */ disabled?: boolean; /** * When set, allows the link to be focusable even when it has been disabled. This is used in scenarios where it is * important to keep a consistent tab order for screen reader and keyboard users. * @default false */ disabledFocusable?: boolean; /** * If true, changes styling when the link is being used alongside other text content. * @default false */ inline?: boolean; }; export declare type LinkSlots = { /** * Root of the component that renders as either an or a