///
import { IntentType, WithThemeProps } from '../../../Common/theming/types';
export declare type WidthSize = 'auto' | 'small' | 'medium' | 'large' | 'xlarge';
export declare type Align = 'left' | 'right';
export interface UpBadgeProps extends WithThemeProps {
text: string;
color?: string;
background?: string;
rounded?: boolean;
intent?: IntentType;
className?: string;
onClick?: (e: React.MouseEvent) => void;
onMouseLeave?: (e: React.MouseEvent) => void;
onMouseEnter?: (e: React.MouseEvent) => void;
}