import React, { type ReactNode, type CSSProperties } from "react"; import type { AlertProps } from "./Alert"; export type BadgeProps = { id?: string; className?: string; style?: CSSProperties; severity?: AlertProps.Severity | "new"; small?: boolean; noIcon?: boolean; /** Default: "p" */ as?: "p" | "span"; children: NonNullable; }; /** @see */ export declare const Badge: React.MemoExoticComponent>>; export default Badge;