import { ScrapeResult } from "../scraper"; interface IGauge { gauge: { name: string; help: string; labelNames: string[]; }; getProperty: (res: ScrapeResult) => any; } export declare const GAUGES: IGauge[]; export {};