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