import { type FC, type MouseEventHandler, type PropsWithChildren, type ReactNode, Ref } from "react"; import { type ColorName } from "../../Foundations"; import { type IconName } from "../BlokIcon/BlokIcon"; export interface BlokBadgeSlots { start?: ReactNode; end?: ReactNode; } export interface BlokBadgeProps { colorScheme?: ColorName; className?: string; expandedContent?: ReactNode; expandLabel?: string; collapseLabel?: string; iconName?: IconName; allowMultiline?: boolean; count?: number; slots?: BlokBadgeSlots; onIconClick?: MouseEventHandler; iconRef?: Ref; ref?: Ref; } export declare const BlokBadge: FC>; //# sourceMappingURL=BlokBadge.d.ts.map