/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { HTMLAttributes } from 'react';
export declare const badgeColors: readonly ["azure", "lime", "magenta", "orange", "purple", "red", "yellow"];
type BadgeColor = (typeof badgeColors)[number];
export type BadgeProps = {
    /** The background colour. */
    color?: BadgeColor;
    /** The text content. */
    label: string | number;
} & HTMLAttributes<HTMLElement>;
export declare const Badge: import("react").ForwardRefExoticComponent<{
    /** The background colour. */
    color?: BadgeColor;
    /** The text content. */
    label: string | number;
} & HTMLAttributes<HTMLElement> & import("react").RefAttributes<HTMLElement>>;
export {};
