import { BrushAppearanceData } from "./BrushAppearanceData";
import { ColorData } from "./ColorData";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class SolidBrushAppearanceData extends BrushAppearanceData {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    private _colorValue;
    get colorValue(): ColorData;
    set colorValue(a: ColorData);
    protected a(): string;
}
