import * as cog from '../cog'; import * as dashboard from '../dashboard'; export declare class ConstantVariableBuilder implements cog.Builder { protected readonly internal: dashboard.VariableModel; constructor(name: string); /** * Builds the object. */ build(): dashboard.VariableModel; name(name: string): this; label(label: string): this; description(description: string): this; value(query: string | Record): this; allowCustomValue(allowCustomValue: boolean): this; staticOptions(staticOptions: dashboard.VariableOption[]): this; staticOptionsOrder(staticOptionsOrder: "before" | "after" | "sorted"): this; definition(definition: string): this; }