import { FC, HTMLAttributes } from 'react'; /** * */ export type BadgeProps = { type?: 'inverse' | 'lightest' | 'success' | 'warning' | 'error'; label?: string; } & HTMLAttributes; /** * */ export declare const Badge: FC;