import React from 'react'; import './Badge.scss'; export type BadgeTheme = 'forest-green' | 'klein-blue' | 'brick' | 'dark-fuchsia' | 'noise'; export type BadgeProps = React.AnchorHTMLAttributes & { theme?: BadgeTheme; }; export declare const Badge: React.FC;