import { GrafanaTheme2 } from '@grafana/data'; import { RadialGaugeDimensions } from './types'; export interface GlowGradientProps { id: string; barWidth: number; } export declare function GlowGradient({ id, barWidth }: GlowGradientProps): import("react/jsx-runtime").JSX.Element; export interface CenterGlowProps { dimensions: RadialGaugeDimensions; gaugeId: string; color?: string; } export declare function MiddleCircleGlow({ dimensions, gaugeId, color }: CenterGlowProps): import("react/jsx-runtime").JSX.Element; interface SpotlightGradientProps { id: string; dimensions: RadialGaugeDimensions; angle: number; roundedBars: boolean; theme: GrafanaTheme2; } export declare function SpotlightGradient({ id, dimensions, roundedBars, angle, theme }: SpotlightGradientProps): import("react/jsx-runtime").JSX.Element | null; export {};