import { SelectionAttachment, Parameter } from "./../index";
export interface RemoveToolboxAttachmentInterface {
    selection?: Array<SelectionAttachment>;
}
export declare class RemoveToolboxAttachment implements RemoveToolboxAttachmentInterface, Parameter {
    selection?: Array<SelectionAttachment>;
    constructor(data: any);
    static getSelectionDefault(): Array<SelectionAttachment>;
    static getSelectionDescription(): string;
    static fromJson(data: any): RemoveToolboxAttachment;
    toJson(): any;
    clone(): RemoveToolboxAttachment;
}
