import { WithTestID } from "../../utils/types"; export type Badge = WithTestID<{ outline?: boolean; text: string; allowFontScaling?: boolean; variant: "default" | "warning" | "error" | "success" | "cgn" | "highlight"; accessible?: boolean; }>; /** * Official badge component */ export declare const Badge: ({ text, outline, allowFontScaling, variant, accessible, testID }: Badge) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Badge.d.ts.map