import React from 'react';
import { BadgeProps as MantineBadgeProps } from '@mantine/core';
export type BadgeProps = {
    color?: string;
} & Omit<MantineBadgeProps, 'color'>;
declare const Badge: ({ color, styles, ...rest }: BadgeProps) => React.JSX.Element;
export { Badge };
