import * as cog from '../cog'; import * as dashboardv2beta1 from '../dashboardv2beta1'; export declare class SwitchVariableBuilder implements cog.Builder { protected readonly internal: dashboardv2beta1.SwitchVariableKind; constructor(name: string); /** * Builds the object. */ build(): dashboardv2beta1.SwitchVariableKind; name(name: string): this; current(current: string): this; enabledValue(enabledValue: string): this; disabledValue(disabledValue: string): this; label(label: string): this; hide(hide: dashboardv2beta1.VariableHide): this; skipUrlSync(skipUrlSync: boolean): this; description(description: string): this; }