import type { DataTestId } from '../../core/types/data-props.js'; import type { StylingProps } from '../../core/types/styling-props.js'; import type { WithChildren } from '../../core/types/with-children.js'; /** * 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) => import("react").ReactElement | null;