import React from 'react'; export interface BadgeProps extends React.HTMLAttributes { /** * The type of the badge */ type?: 'success' | 'danger' | 'warning' | 'neutral' | 'primary'; } declare const Badge: React.ForwardRefExoticComponent>; export default Badge; //# sourceMappingURL=Badge.d.ts.map