import * as React from 'react'; import { PropsWithChildren } from 'react'; export declare type BadgeType = 'success' | 'warning' | 'danger' | 'info'; export interface IBadgeProps { type?: BadgeType; } export declare const Badge: React.FC & React.HTMLProps>;