import * as react from 'react'; import { ReactNode } from 'react'; import { ViewStyle } from 'react-native'; type BadgeTone = "neutral" | "accent" | "success" | "warning" | "danger" | "ghost"; type BadgeSize = "sm" | "md"; interface BadgeProps { tone?: BadgeTone; size?: BadgeSize; soft?: boolean; style?: ViewStyle; children?: ReactNode; } declare function Badge({ tone, size, soft, style, children }: BadgeProps): react.JSX.Element; export { Badge, type BadgeProps, type BadgeSize, type BadgeTone };