import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * 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) => React.ReactElement | null;