import { BrushScaleDescription } from "./BrushScaleDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class ValueBrushScaleDescription extends BrushScaleDescription {
    static $t: Type;
    protected get_type(): string;
    constructor();
    private s;
    get minimumValue(): number;
    set minimumValue(a: number);
    private r;
    get maximumValue(): number;
    set maximumValue(a: number);
    private p;
    get isLogarithmic(): boolean;
    set isLogarithmic(a: boolean);
    private v;
    get logarithmBase(): number;
    set logarithmBase(a: number);
}
