import type { StyleProp, ViewStyle, ViewProps } from 'react-native'; import type { ReactElement, ReactNode } from 'react'; export interface CountProps extends ViewProps { children: ReactNode; /** * Whether the Status Badge is visible. */ visible?: boolean; /** * Additional style. */ style?: StyleProp; /** * Testing id of the component. */ testID?: string; /** * The content will be displayed in the badge. */ content: number; /** * The maximum number displayed on the badge. If number exceeds this value, `${max}+` are displayed instead. (Only applied when content is number.) */ max?: number; } declare const Status: ({ children, visible, style, max, testID, content: originalContent, ...nativeProps }: CountProps) => ReactElement; export default Status;