import { FileAttachment, Parameter } from "./../index";
export interface AddToolboxAttachmentInterface {
    file?: Array<FileAttachment>;
}
export declare class AddToolboxAttachment implements AddToolboxAttachmentInterface, Parameter {
    file?: Array<FileAttachment>;
    constructor(data: any);
    static getFileDefault(): Array<FileAttachment>;
    static getFileDescription(): string;
    static fromJson(data: any): AddToolboxAttachment;
    toJson(): any;
    clone(): AddToolboxAttachment;
}
