import { ReactNode } from '../../shims/react-compat-shim.js'; type BadgeVariant = 'primary' | 'success' | 'error'; interface Props { children?: ReactNode; variant?: BadgeVariant; } export default function Badge({ children, variant }: Props): any; export {}; //# sourceMappingURL=Badge.d.ts.map