import * as cog from '../cog'; import * as common from '../common'; export declare class ScalarDimensionConfigBuilder implements cog.Builder { protected readonly internal: common.ScalarDimensionConfig; constructor(); /** * Builds the object. */ build(): common.ScalarDimensionConfig; min(min: number): this; max(max: number): this; fixed(fixed: number): this; field(field: string): this; mode(mode: common.ScalarDimensionMode): this; }