import { type ReactNode, type SVGTextElementAttributes } from 'react'; interface GaugeLabelProps extends SVGTextElementAttributes { value: ReactNode; autoHide?: boolean; responsive?: boolean; prefixIcon?: ReactNode; } export declare const GaugeLabel: ({ value, autoHide, responsive, prefixIcon, ...textProps }: GaugeLabelProps) => import("react/jsx-runtime").JSX.Element; export {};