import type { DataTestId, StylingProps, WithChildren } from '@dynatrace/strato-components/core'; /** * Accepted properties for the HealthIndicator Visual. * @public */ export interface HealthIndicatorVisualProps extends WithChildren, StylingProps, DataTestId { } /** * The HealthIndicator Visual component represents the custom visualization of the indicator. * @public */ export declare const Visual: (props: HealthIndicatorVisualProps & import("react").RefAttributes) => React.ReactElement | null;