import * as cog from '../cog'; import * as dashboardv2beta1 from '../dashboardv2beta1'; import * as piechart from '../piechart'; import * as common from '../common'; export declare class VisualizationBuilder implements cog.Builder { protected readonly internal: dashboardv2beta1.VizConfigKind; constructor(); /** * Builds the object. */ build(): dashboardv2beta1.VizConfigKind; displayName(displayName: string): this; displayNameFromDS(displayNameFromDS: string): this; description(description: string): this; path(path: string): this; unit(unit: string): this; decimals(decimals: number): this; min(min: number): this; max(max: number): this; mappings(mappings: dashboardv2beta1.ValueMapping[]): this; thresholds(thresholds: cog.Builder): this; colorScheme(color: cog.Builder): this; dataLinks(links: any[]): this; actions(actions: cog.Builder[]): this; noValue(noValue: string): this; overrides(overrides: { __systemRef?: string; matcher: dashboardv2beta1.MatcherConfig; properties: dashboardv2beta1.DynamicConfigValue[]; }[]): this; override(override: { __systemRef?: string; matcher: dashboardv2beta1.MatcherConfig; properties: dashboardv2beta1.DynamicConfigValue[]; }): this; pieType(pieType: piechart.PieChartType): this; displayLabels(displayLabels: piechart.PieChartLabels[]): this; tooltip(tooltip: cog.Builder): this; reduceOptions(reduceOptions: cog.Builder): this; text(text: cog.Builder): this; legend(legend: cog.Builder): this; orientation(orientation: common.VizOrientation): this; hideFrom(hideFrom: cog.Builder): this; overrideByName(name: string, properties: dashboardv2beta1.DynamicConfigValue[]): this; overrideByRegexp(regexp: string, properties: dashboardv2beta1.DynamicConfigValue[]): this; overrideByFieldType(fieldType: string, properties: dashboardv2beta1.DynamicConfigValue[]): this; overrideByQuery(queryRefId: string, properties: dashboardv2beta1.DynamicConfigValue[]): this; }