import { default as React } from 'react'; export declare const rootClassName = "teddy-badge"; /** ------------------------------------------------------------------------------------------------- * Badge * -----------------------------------------------------------------------------------------------*/ export type Variant = 'attention' | 'special' | 'neutral' | 'information' | 'success' | 'warning' | 'error'; type BadgeProps = React.ComponentPropsWithoutRef<'span'> & { asChild?: boolean; variant: Variant; hideIcon?: boolean; }; /** * Badges are visual indictor labels, which holds small amount of information about a product or service, using contextual colors. */ declare const Badge: React.ForwardRefExoticComponent, HTMLSpanElement>, "ref"> & { asChild?: boolean; variant: Variant; hideIcon?: boolean; } & React.RefAttributes>; export { Badge }; export type { BadgeProps };