export interface StatusBadgeProps { /** Text on the badge */ label: string; /** true to render the card with high contrast colors; otherwise, false. The default is false. */ highContrast?: boolean; } export declare const StatusBadge: ({ label, highContrast }: StatusBadgeProps) => import("react").JSX.Element;