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