import type { PropsWithChildren, JSX } from 'react';
export type BadgeProps = PropsWithChildren<{
    deprecated?: boolean;
    color?: string;
    key?: string;
    className?: string;
    icon?: string;
}>;
export declare function Badge({ icon, children, ...props }: BadgeProps): JSX.Element;
