import { default as React } from 'react'; export type BadgeVariant = 'primary' | 'secondary'; export type BadgeProps = { /** * The content of the badge */ children: React.ReactNode; /** * The visual style of the badge * @default primary */ variant?: BadgeVariant; /** * className for the element */ className?: string; }; export declare const Badge: ({ children, variant, className, }: BadgeProps) => React.JSX.Element; //# sourceMappingURL=Badge.d.ts.map