import { Parameter, SelectionBox } from "./../index";
export interface RemoveBoxesInterface {
    boxesRemove?: SelectionBox;
}
export declare class RemoveBoxes implements RemoveBoxesInterface, Parameter {
    boxesRemove?: SelectionBox;
    constructor(data: any);
    static getBoxesRemoveDescription(): string;
    static fromJson(data: any): RemoveBoxes;
    toJson(): any;
    clone(): RemoveBoxes;
}
