/// <reference types="react" />
import * as React from 'react';
import { ThemedProps, IntentType } from '../../../Common/theming/types';
export declare type WidthSize = 'auto' | 'small' | 'medium' | 'large' | 'xlarge';
export declare type Align = 'left' | 'right';
export interface UpBadgeProps extends ThemedProps {
    text: string;
    color?: string;
    background?: string;
    rounded?: boolean;
    intent?: IntentType;
}
declare const _default: React.ComponentClass<any>;
export default _default;
