import { DataTestId } from '../../core/types/data-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; import { WithChildren } from '../../core/types/with-children.js'; /** * Accepted properties for the HealthIndicator Label. * @public */ export interface HealthIndicatorLabelProps extends WithChildren, StylingProps, DataTestId { } /** * The label of the HealthIndicator component. * @public */ export declare const Label: (props: HealthIndicatorLabelProps & import("react").RefAttributes) => import("react").ReactElement | null;