/// import { ReactAddon, ReactControl } from '../../react/base'; export declare const BadgeStatus: { default: string; success: string; processing: string; error: string; warning: string; }; export declare class Badge extends ReactAddon { count?: ReactControl; showZero?: boolean; overflowCount?: number; dot?: boolean; status?: keyof typeof BadgeStatus; color?: string; text?: ReactControl; offset?: [number | string, number | string]; title?: string; children?: ReactControl; onRender?: (() => JSX.Element) | undefined; } export declare const BadgeControl: any;