import React from 'react'; import { IReferenceable } from '../core'; import { CommonBadgeProps } from './types'; export interface AnchorBadgeProps extends CommonBadgeProps, IReferenceable { href?: string; rel?: string; target?: string; onClick?: React.MouseEventHandler; onFocus?: React.FocusEventHandler; onBlur?: React.FocusEventHandler; onMouseOver?: React.MouseEventHandler; onMouseOut?: React.MouseEventHandler; } export declare function AnchorBadge(props: AnchorBadgeProps): JSX.Element;