import React from 'react'; export type BadgeTone = 'neutral' | 'info' | 'success' | 'warning' | 'error'; export type BadgeVariant = 'subtle' | 'solid'; export type BadgeSize = 'sm' | 'md'; export type BadgeProps = React.HTMLAttributes & { tone?: BadgeTone; variant?: BadgeVariant; size?: BadgeSize; }; type BadgeComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const Badge: BadgeComponent; export default Badge; //# sourceMappingURL=index.d.ts.map