import type { HealthIndicatorProps } from './health-indicator-types.js'; /** * The HealthIndicator helps consumers to visualize the status of a resource. * @public */ export declare const HealthIndicator: ((props: HealthIndicatorProps & import("react").RefAttributes) => import("react").ReactElement | null) & { Visual: (props: import("./Visual.js").HealthIndicatorVisualProps & import("react").RefAttributes) => import("react").ReactElement | null; Label: (props: import("./Label.js").HealthIndicatorLabelProps & import("react").RefAttributes) => import("react").ReactElement | null; };