import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { ILabelableProps } from '../../../Behaviors/Labelable'; import type { IVariantableProps } from '../../../Behaviors/Variantable'; import type { HyperlinkUnderline } from '../../../Types/HyperlinkUnderline'; import type { IButtonLinkElementProps } from '../../Buttons/Button/IButtonLinkElementProps'; /** * Represents the `IBreadcrumbItemElementProps` interface. * * @public */ export interface IBreadcrumbItemElementProps extends IButtonLinkElementProps, IDisableableProps, IVariantableProps, ILabelableProps { isActive: boolean; underline: HyperlinkUnderline; } //# sourceMappingURL=IBreadcrumbItemElementProps.d.ts.map