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