import { FieldDisplay, GrafanaTheme2 } from '@grafana/data';
import { RadialShape } from './RadialGauge';
import { GaugeDimensions } from './utils';
interface RadialSparklineProps {
    sparkline: FieldDisplay['sparkline'];
    dimensions: GaugeDimensions;
    theme: GrafanaTheme2;
    color?: string;
    shape?: RadialShape;
}
export declare function RadialSparkline({ sparkline, dimensions, theme, color, shape }: RadialSparklineProps): import("react/jsx-runtime").JSX.Element | null;
export {};
