import type { BadgeAnatomyType } from './badge.types'; export declare const BADGE_OVERFLOW_THRESHOLD = 99; type BadgeLabelInput = string | number | null; /** * Formats badge label text for supported anatomy types. * Returns `null` when the type has no text or the value is invalid. * Counters truncate decimals and cap at `99+`. */ export declare function formatBadgeLabel(type: BadgeAnatomyType, label?: BadgeLabelInput): string | null; export {};