import React from 'react';
import { IBaseElement } from '../types';
export declare type IBadge = IBaseElement & {
    value?: number;
    max?: number;
    vertical?: 'top' | 'bottom';
    horizontal?: 'left' | 'right';
    indicator?: boolean;
    element?: any;
};
declare const Badge: React.FC<IBadge>;
export default Badge;
