import { ComponentPropsWithoutRef } from 'react'; type ELBadgeProps = ComponentPropsWithoutRef<'div'> & { Icon: React.ForwardRefExoticComponent, 'ref'> & { title?: string | undefined; titleId?: string | undefined; } & React.RefAttributes>; color: 'primary' | 'secondary'; label?: string; size?: 'large' | 'medium' | 'small'; applyNativeSVGSize?: boolean; }; export declare const ELBadge: ({ Icon, label, color, size, applyNativeSVGSize, ...rest }: ELBadgeProps) => import("react/jsx-runtime").JSX.Element; export {};