import { default as React } from 'react'; declare const colorClass: { readonly lavender: "bg-lavender"; readonly 'dark-green': "bg-dark-green"; readonly black: "bg-black"; }; type BadgeColorList = keyof typeof colorClass; export type BadgeProps = { /** Content of the Badge */ children: React.ReactNode; /** Color of the Badge */ color: BadgeColorList; /** Optional prop to add a test id to the Badge for QA testing */ qaTestId?: string; }; declare const Badge: ({ children, color, qaTestId, }: BadgeProps) => import("react/jsx-runtime").JSX.Element; export default Badge;