import { FunctionComponent } from 'react';
interface BadgeProps {
    className?: string;
    badgeText: string;
}
/**
 * Badge component
 *
 * @param {*} props
 * @returns
 */
declare const Index: FunctionComponent<BadgeProps>;
export default Index;
