import { BadgeVariant, BadgeAppearance } from '../types.js'; import { StyleProp, ViewStyle } from 'react-native'; import { Theme } from '@vega-ui/theme'; type AllBadgeVariants = `${BadgeVariant}${Capitalize}`; type BadgeStyles = Record>; declare const getBadgeStyles: (theme?: Theme) => BadgeStyles; export { getBadgeStyles };