import React from "react"; import { Animated, StyleProp, TextStyle, ViewProps } from "react-native"; import { PaletteColor } from "./base"; export interface BadgeProps { label?: number | string | React.ReactElement | ((props: { color: string; }) => React.ReactElement | null) | null; showZero?: boolean; max?: number; visible?: boolean; color?: PaletteColor; tintColor?: PaletteColor; style?: Animated.AnimatedProps["style"]; labelStyle?: StyleProp; } declare const Badge: React.FC; export default Badge;