import * as React from "react"; import { IconButtonProps } from "../IconButton/IconButton"; export declare type BadgeSize = "small" | "medium" | "large"; export interface BadgeProps extends IconButtonProps { /** * The title for the Badge */ title: string; } /** * @public * * @description * * The Badge is a simple display icon with fun animations. */ export declare const Badge: React.FC;