import { Description } from "./Description";
import { ToolActionDescription } from "./ToolActionDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class ToolbarDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private h;
    get autoGeneratedActions(): ToolActionDescription[];
    set autoGeneratedActions(a: ToolActionDescription[]);
    private f;
    get actions(): ToolActionDescription[];
    set actions(a: ToolActionDescription[]);
    private g;
    get actualActions(): ToolActionDescription[];
    set actualActions(a: ToolActionDescription[]);
    private r;
    get orientation(): string;
    set orientation(a: string);
    private s;
    get targetRef(): string;
    set targetRef(a: string);
    private n;
    get backgroundColor(): string;
    set backgroundColor(a: string);
    private t;
    get textColor(): string;
    set textColor(a: string);
    private o;
    get cellFontFamily(): string;
    set cellFontFamily(a: string);
    private l;
    get cellFontSize(): number;
    set cellFontSize(a: number);
    private p;
    get cellFontStyle(): string;
    set cellFontStyle(a: string);
    private q;
    get cellFontWeight(): string;
    set cellFontWeight(a: string);
}
