import React, { ReactElement } from 'react'; import { CommonProps } from '../common'; interface StandaloneBadgeProps extends CommonProps { /** * Content to be displayed, can be number or string. */ content: number | string; /** * Visual intent color to apply to badge. */ intent?: 'basic' | 'success' | 'primary' | 'warning' | 'danger' | 'error'; } declare const Badge: { ({ content, intent, id, className, style, sx, "data-test-id": dataTestId, }: StandaloneBadgeProps): ReactElement; Status: ({ children, intent }: import("./Status").StatusProps) => React.ReactElement>; Count: ({ children, content, intent, }: import("./Count").CountProps) => React.ReactElement>; }; export default Badge;