import { FunctionComponent } from 'react'; export type BadgeNotificationType = { className?: string; label?: string; showLabel?: boolean; /** Variant props */ size?: "sm" | "md" | "lg"; }; export declare const BadgeNotification: FunctionComponent; export default BadgeNotification;