import { FieldDisplay, GrafanaTheme2 } from '@grafana/data'; import { RadialShape, RadialTextMode, RadialGaugeDimensions } from './types'; interface RadialSparklineProps { color?: string; dimensions: RadialGaugeDimensions; shape: RadialShape; sparkline: FieldDisplay['sparkline']; textMode: Exclude; theme: GrafanaTheme2; } export declare function getSparklineDimensions(radius: number, barWidth: number, showNameAndValue: boolean, shape: RadialShape): { width: number; height: number; }; export declare const RadialSparkline: import("react").MemoExoticComponent<({ sparkline, dimensions, theme, color, shape, textMode }: RadialSparklineProps) => import("react/jsx-runtime").JSX.Element | null>; export {};