import React from 'react'; import { DarkModeProps } from '@leafygreen-ui/lib'; export interface BadgeProps extends React.ComponentProps<'div'>, DarkModeProps { /** * An additional className to add to the component's classList */ className?: string; /** * The content to render within the badge */ children?: React.ReactNode; /** * The Badge's style variant * * @default 'lightgray' */ variant?: Variant; } export declare const Variant: { readonly DarkGray: "darkgray"; readonly LightGray: "lightgray"; readonly Red: "red"; readonly Yellow: "yellow"; readonly Blue: "blue"; readonly Green: "green"; readonly Purple: "purple"; }; export type Variant = (typeof Variant)[keyof typeof Variant]; //# sourceMappingURL=Badge.types.d.ts.map