import { type TextStyle, type ViewStyle } from "react-native"; import { type Colors } from "../theme/theme.types"; type BadgeProps = { children: React.ReactNode; color?: keyof Colors; size?: "xs" | "sm" | "md" | "lg" | "xl"; containerStyle?: ViewStyle; textStyle?: TextStyle; }; export declare function Badge({ children, color, size, containerStyle, textStyle, }: BadgeProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map