import { ButtonLinkProps } from '../ButtonLink'; import { ToolbarItemAppearance, WithAriaLabelEnforcement } from './types'; import { DataTrackingId } from '../../types'; /** * Base props for the ToolbarButtonLink component * @extends Omit */ type ToolbarButtonLinkBaseProps = Omit & { /** * Visual appearance of the button link * @default ghost */ appearance?: ToolbarItemAppearance; }; /** * Props for the ToolbarButtonLink component * @extends WithAriaLabelEnforcement */ export type ToolbarButtonLinkProps = WithAriaLabelEnforcement & DataTrackingId; /** * ToolbarButtonLink component for link actions within a toolbar. * * Features: * - Link functionality with href support * - Designed specifically for toolbar integration * - Consistent styling with other toolbar items * - Automatic tooltip for icon-only links * - Overflow menu support * - Accessibility enforcement for aria-labels * - Ghost and primary appearance options * - Proper anchor element semantics * * @example * * Help * * * @example * */ export declare const ToolbarButtonLink: import('react').ForwardRefExoticComponent>; export {};