import type { ReactElement } from 'react'; import type { BasicBadgeProps, IconBadgeProps } from './types'; export type BadgeProps = BasicBadgeProps | IconBadgeProps; declare const _default: (({ content: originalContent, visible, max, intent, style, testID, size, variant, icon, ...nativeProps }: BadgeProps) => ReactElement) & { Status: ({ children, visible, intent, style, testID, ...nativeProps }: import("./Status").StatusProps) => ReactElement; Count: ({ children, visible, style, max, testID, content: originalContent, ...nativeProps }: import("./Count").CountProps) => ReactElement; }; export default _default;