import React from "react"; import { LinkProps } from "../../link"; import { TagProps } from "../../../__internal__/utils/helpers/tags"; export interface CrumbProps extends Pick, TagProps { /** This sets the Crumb to current, does not render Link */ isCurrent?: boolean; /** @deprecated Intended for internal use only */ hasFocus?: boolean; /** * Specifies when the link underline should be displayed. * @deprecated The 'underline' prop in Crumb is deprecated and will soon be removed. */ underline?: "always" | "hover" | "never"; /** * Sets the correct link size * @deprecated The 'linkSize' prop in Crumb is deprecated and will soon be removed. */ linkSize?: "medium" | "large"; /** * Sets the link style to bold * @deprecated The 'bold' prop in Crumb is deprecated and will soon be removed. */ bold?: boolean; } export declare const Crumb: React.ForwardRefExoticComponent>; export default Crumb;