import React, { type ReactNode } from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; type Props = { children: ReactNode; renderDot?: ReactNode; dotColor?: string; dotStylesProps?: StyleProp; count?: number; show?: boolean; overflowCount?: number; }; declare const Badge: (props: Props) => React.JSX.Element; export default Badge; //# sourceMappingURL=Badge.d.ts.map