import type { FunctionComponent } from 'react'; export declare const SeverityType: { readonly critical: "critical"; readonly important: "important"; readonly minor: "minor"; readonly moderate: "moderate"; readonly none: "none"; readonly undefined: "undefined"; }; export type SeverityType = (typeof SeverityType)[keyof typeof SeverityType]; export interface SeverityProps extends React.DetailedHTMLProps, HTMLElement> { /** Determines a variant of displayed severity */ severity: SeverityType; /** Label displayed next to the severity */ label: React.ReactNode; /** Option to hide the label */ labelHidden?: boolean; /** Custom className */ className?: string; /** Custom OUIA ID */ ouiaId?: string | number; } export declare const Severity: FunctionComponent; export default Severity;