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 '../Button/IButtonLinkElementProps'; /** * Represents the `IAnchorElementProps` interface. * * @public */ export interface IAnchorElementProps extends IButtonLinkElementProps, IDisableableProps, IVariantableProps, ILabelableProps { underline: HyperlinkUnderline; } //# sourceMappingURL=IAnchorElementProps.d.ts.map