import { BadgeVariantType } from './primitive/BadgePrimitive'; import { BadgeDropdownProps } from './variants/BadgeDropdown'; import { BadgePopoverProps } from './variants/BadgePopover'; import { BadgeTagProps } from './variants/BadgeTag'; import { BadgeValueProps } from './variants/BadgeValue'; type BadgeValueType = BadgeVariantType<'badge', BadgeValueProps>; type BadgeTagType = BadgeVariantType<'tag', BadgeTagProps>; type BadgeDropdownType = BadgeVariantType<'dropdown', BadgeDropdownProps>; type BadgePopoverType = BadgeVariantType<'popover', BadgePopoverProps>; export type BadgeProps = BadgeValueType | BadgeTagType | BadgeDropdownType | BadgePopoverType; export declare const Badge: import("react").ForwardRefExoticComponent<(Omit | Omit | Omit | Omit) & import("react").RefAttributes>; export {};