import React from 'react'; import { TextProps, StyleProp, ViewStyle, TextStyle } from 'react-native'; import { RneFunctionComponent } from '../helpers'; export declare type BadgeProps = { containerStyle?: StyleProp; badgeStyle?: StyleProp; textProps?: TextProps; textStyle?: StyleProp; value?: React.ReactNode; onPress?: (...args: any[]) => any; Component?: typeof React.Component; status?: 'primary' | 'success' | 'warning' | 'error'; }; declare const Badge: RneFunctionComponent; export { Badge }; declare const _default: React.FunctionComponent>, keyof import("../config").ThemeProps>> | React.ForwardRefExoticComponent>>; export default _default;