import { FunctionComponent, ReactNode } from 'react';
import { BasicComponent } from '../../utils/typings';
export type BadgeFill = 'solid' | 'outline';
export interface BadgeProps extends BasicComponent {
    value: ReactNode;
    dot: boolean;
    max: number;
    top: string | number;
    right: string | number;
    color: string;
    fill: BadgeFill;
}
export declare const Badge: FunctionComponent<Partial<BadgeProps>>;
