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