import { Item, Parameter } from "./../index";
export interface AddToolboxOutlineInterface {
    item?: Array<Item>;
}
export declare class AddToolboxOutline implements AddToolboxOutlineInterface, Parameter {
    item?: Array<Item>;
    constructor(data: any);
    static getItemDefault(): Array<Item>;
    static getItemDescription(): string;
    static fromJson(data: any): AddToolboxOutline;
    toJson(): any;
    clone(): AddToolboxOutline;
}
