import { CompositeMarkComponent as CC } from '../runtime';
import { GaugeMark } from '../spec';
export type GaugeData = {
    target?: number;
    total?: number;
    percent?: number;
    name?: string;
    thresholds?: number[];
} | number;
export type GaugeOptions = Omit<GaugeMark, 'type'>;
export declare const Gauge: CC<GaugeOptions>;
