import type { AttrClass } from "marko/tags-html";
import type { WithNormalizedProps } from "../../global";
static interface BadgeInput extends Omit<Marko.HTML.Span, `on${string}`> {
    type?: "menu" | "icon";
    number?: number | string;
    class?: AttrClass;
}
export interface Input extends WithNormalizedProps<BadgeInput> {
}
