import React from 'react'; import type { CSSProperties } from 'react'; import { Colors } from '../colors'; export interface BadgesProps { className?: string; color?: Colors | 'secondary'; textColor?: Colors; mode: 'outline' | 'pill'; style?: CSSProperties; light?: boolean; } declare const Badges: ({ className, color, mode, style, textColor, light, children }: React.PropsWithChildren) => React.JSX.Element; export default Badges;