import { RemoveToolboxAttachment, Parameter, AddToolboxAttachment, ExtractToolboxAttachment } from "./../index";
export interface ToolboxAttachmentAttachmentInterface {
    add?: AddToolboxAttachment;
    extract?: ExtractToolboxAttachment;
    remove?: RemoveToolboxAttachment;
}
export declare class ToolboxAttachmentAttachment implements ToolboxAttachmentAttachmentInterface, Parameter {
    add?: AddToolboxAttachment;
    extract?: ExtractToolboxAttachment;
    remove?: RemoveToolboxAttachment;
    constructor(data: any);
    static getAddDescription(): string;
    static getExtractDescription(): string;
    static getRemoveDescription(): string;
    static fromJson(data: any): ToolboxAttachmentAttachment;
    toJson(): any;
    clone(): ToolboxAttachmentAttachment;
}
