/// import { TailwindFn } from 'twrnc'; import { Style } from 'twrnc/dist/esm/types'; declare type Props = { tw: TailwindFn; style?: Style; badgeStyle?: Style; badgeColor?: string; icon?: string; iconStyle?: Style; iconColor?: string; showBadge?: boolean; size?: number; onPress?: () => void; accessibilityLabel: string; }; declare const NotificationBadge: ({ tw, style, badgeStyle, badgeColor, icon, iconStyle, iconColor, showBadge, size, onPress, accessibilityLabel, }: Props) => JSX.Element; export default NotificationBadge;