import React, { FC } from 'react'; export interface Props { variant?: Variant; compact?: boolean; } type Variant = 'primary' | 'secondary' | 'warning' | 'info' | 'error'; declare const Badge: FC>; export default Badge;