import React from 'react'; import type { TestIdProp } from '../../types'; import type { StyledBadgeProps } from './Badge.css'; type Colours = Exclude; export interface BadgeProps extends TestIdProp { /** The text content */ label: string; /** The color of the badge */ colour?: Colours; /** Override class name with additional styles */ className?: string; /** The visual style of the badge */ look?: 'standard' | 'inverted'; /** Select the badge size */ size?: StyledBadgeProps['size']; } /** * The Badge component displays a label using intentional colour themes. The colours and sizes are configuable. * * To apply badge styling to an element directly the `styledBadge` recipe can be used. */ export declare const Badge: ({ label, colour, look, size, className, testId, }: BadgeProps) => React.JSX.Element; export {}; //# sourceMappingURL=Badge.d.ts.map