import type { GrafanaSingleStatPanel } from '../grafana'; import type Row from '../row'; import type Dashboard from '../dashboard'; type SingleStatOptions = Partial; declare class SingleStat { state: GrafanaSingleStatPanel; constructor(opts?: SingleStatOptions); generate(): GrafanaSingleStatPanel; setTitle(title: string): void; addTarget(target: any): void; } export = SingleStat; //# sourceMappingURL=singlestat.d.ts.map