import type { GrafanaGraphPanel } from '../grafana'; import type Row from '../row'; import type Dashboard from '../dashboard'; import type Alert from '../alert/alert'; type GraphPanelOptions = Partial; declare class Graph { private _currentRefIndex; state: GrafanaGraphPanel; constructor(opts?: GraphPanelOptions); generate(): GrafanaGraphPanel; addAlert(alert: Alert): void; addTarget(target: string & { hide: any; }): void; } export = Graph; //# sourceMappingURL=graph.d.ts.map