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