export interface BadgeTheme {
    base: string;
    disableMargins: string;
    badge: string;
    position: string;
    colors: {
        default: string;
        primary: string;
        secondary: string;
        error: string;
        [key: string]: string;
    };
    positions: {
        'top-start': string;
        'top-end': string;
        'bottom-start': string;
        'bottom-end': string;
    };
}
export declare const badgeTheme: BadgeTheme;
export declare const legacyBadgeTheme: BadgeTheme;
