import React from 'react'; import type { BaseProps } from '../component-helpers'; /** * Design tokens */ import '@primer/brand-primitives/lib/design-tokens/css/tokens/functional/components/inline-link/colors-with-modes.css'; import '@primer/brand-primitives/lib/design-tokens/css/tokens/functional/components/inline-link/base.css'; export type InlineLinkProps = BaseProps & { /** * Specify the links destination */ href: string; } & React.AnchorHTMLAttributes & React.HTMLAttributes; /** * A HTML anchor link component that renders inline with adjacent text. */ export declare const InlineLink: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>;