import * as cog from '../cog'; import * as dashboardv2beta1 from '../dashboardv2beta1'; 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; bucketCount(bucketCount: number): this; bucketSize(bucketSize: number): this; bucketOffset(bucketOffset: number): this; legend(legend: cog.Builder): this; tooltip(tooltip: cog.Builder): this; combine(combine: boolean): this; lineWidth(lineWidth: number): this; fillOpacity(fillOpacity: number): this; axisPlacement(axisPlacement: common.AxisPlacement): this; axisColorMode(axisColorMode: common.AxisColorMode): this; axisLabel(axisLabel: string): this; axisWidth(axisWidth: number): this; axisSoftMin(axisSoftMin: number): this; axisSoftMax(axisSoftMax: number): this; axisGridShow(axisGridShow: boolean): this; scaleDistribution(scaleDistribution: cog.Builder): this; axisCenteredZero(axisCenteredZero: boolean): this; hideFrom(hideFrom: cog.Builder): this; stacking(stacking: cog.Builder): this; gradientMode(gradientMode: common.GraphGradientMode): this; axisBorderShow(axisBorderShow: boolean): 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; }