import { DataAttributes } from 'src/types'; declare const BadgeButton: import("react").ForwardRefExoticComponent<{ /** * Component ID used as key and for data-testid. */ componentId?: string; /** * (optional) Element to display in button. */ children?: JSX.Element | string; /** * (optional) Button click handler. */ onClick?: () => void; } & Partial & import("react").RefAttributes>; export default BadgeButton;