import { TypeBadgeCount } from '../interfaces/result-types/TypeBadgeCount';
/**
 * The equivalent of [Type badge_count](https://api.stackexchange.com/docs/types/badge-count).<br>
 * This object represents the total [[Badge|Badges]], segregated by rank, a user has earned.
 */
export declare class BadgeCount {
    bronze: number | null;
    gold: number | null;
    silver: number | null;
    constructor(badge_count?: TypeBadgeCount);
}
