import React from "react"; import type { IconName } from "../Icon/Icon"; type BadgeColor = `green` | `blue` | `yellow` | `brand` | `purple` | `red` | `gray`; export type BadgeProps = { /** This is a text for a component property */ text: string; /** A color doesn't reflect any intent other than to variety */ color?: BadgeColor; icon?: IconName; "data-e2e-test-id"?: string; "data-color"?: BadgeColor; }; export declare function Badge({ text, color, icon, "data-e2e-test-id": dataE2eTestId, ...ariaAttributes }: BadgeProps): React.ReactElement; export {};