import React from "react";
import { AllCustomizationProps, CnCh, ElemType, PigmentColorProps, RippleEffect, SyntheticKeyboardControls } from "../../helpers/global.types";
declare type ExtraBadgeProps = ElemType & AllCustomizationProps & PigmentColorProps & CnCh & SyntheticKeyboardControls & RippleEffect;
export interface BadgeProps extends ExtraBadgeProps {
    onClick?: React.MouseEventHandler<HTMLElement>;
}
export {};
