import { HTMLAttributes } from 'react';
declare type Styling = 'confirmed' | 'default' | 'invalid' | 'waiting' | 'brand';
interface BadgeProps extends Omit, 'color'> {
/**
* The style you want to assign to your badge.
*/
styling?: Styling;
}
declare const Badge: {
({ children, styling, ...rest }: BadgeProps): JSX.Element;
defaultProps: {
styling: string;
};
};
export default Badge;