import React, { PropsWithChildren } from 'react'; interface IBadgeProps { color?: 'white' | 'gray' | 'red' | 'yellow' | 'green' | 'blue' | 'primary' | 'purple' | 'pink'; size?: 'medium' | 'large'; withDot?: boolean; rounded?: 'none' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | 'full'; onClose?: () => void; onClick?: () => void; CloseIcon?: React.ReactElement; className?: string; classes?: Partial>; } declare const Badge: (props: PropsWithChildren) => JSX.Element; export default Badge; //# sourceMappingURL=index.d.ts.map