import { BoxProps, HoistProps, Intent } from '@xh/hoist/core'; import './Badge.scss'; export interface BadgeProps extends HoistProps, BoxProps { /** Sets fontsize to half that of parent element (default false). */ compact?: boolean; intent?: Intent; } /** * Badge indicator, generally displayed inline with text/title, showing a count or other small * indicator that something is new or has content. */ export declare const Badge: import("react").FC, badge: import("@xh/hoist/core").ElementFactory;